Skip to content

Commit f129d2f

Browse files
committed
Release v1.1.7
1 parent f594731 commit f129d2f

File tree

11 files changed

+64
-940
lines changed

11 files changed

+64
-940
lines changed

docs/v1.1/Docs/Customization/config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
```html
1212
<script type="text/javascript">
1313
window.cnblogsConfig = {
14-
GhVersions : 'v1.1.6',
14+
GhVersions : 'v1.1.7',
1515
blogUser : "userName",
1616
blogAvatar : "https://xxxx.png",
1717
blogStartDate : "2016-11-17"
@@ -26,7 +26,7 @@
2626
```html
2727
<script type="text/javascript">
2828
window.cnblogsConfig = {
29-
GhVersions : 'v1.1.6',
29+
GhVersions : 'v1.1.7',
3030
blogUser : "userName",
3131
blogAvatar : "https://xxxx.png",
3232
blogStartDate : "2016-11-17",

docs/v1.1/Docs/GettingStarted/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ CSS代码位置:```/src/style/base.min.css``` 拷贝此文件代码至页面
5959
```html
6060
<script type="text/javascript">
6161
window.cnblogsConfig = {
62-
GhVersions : 'v1.1.6', // 版本
62+
GhVersions : 'v1.1.7', // 版本
6363
blogUser : "userName", // 用户名
6464
blogAvatar : "https://xxxx.png", // 用户头像
6565
blogStartDate : "2016-11-17", // 入园时间,年-月-日。入园时间查看方法:鼠标停留园龄时间上,会显示入园时间
6666
}
6767
</script>
68-
<script src="https://cdn.jsdelivr.net/gh/BNDong/Cnblogs-Theme-SimpleMemory@v1.1.6/src/script/simpleMemory.min.js"></script>
68+
<script src="https://cdn.jsdelivr.net/gh/BNDong/Cnblogs-Theme-SimpleMemory@v1.1.7/src/script/simpleMemory.min.js"></script>
6969
```
7070

7171
!> 注意:引入的文件 simpleMemory.min.js 版本需要与配置 window.cnblogsConfig.GhVersions 一致!

docs/v1.1/Docs/changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 2019.09.07 - v1.1.7
2+
* 更新基础 CSS 文件
3+
* 调整文章标题h1~h2位置
4+
* 统一文章标题h3~h5样式
5+
* 去除文章自动段落缩进
6+
* 更新菜单滚动条插件版本
7+
* 修复个别浏览器文章页 banner 图片大小设置不生效的问题
8+
* 修复个别浏览器菜单导航下划线样式显示不全的问题
9+
* 修复谷歌浏览器(76.0.3809.132)菜单滚动卡住的问题
10+
111
## 2019.08.30 - v1.1.6
212
* 更新基础 CSS 文件
313
* 增加版本映射功能,用以解决 CDN 缓存更新的问题

img/title_icon.png

1.42 KB
Loading

src/script/MyTween.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,6 @@ var mouseX = mouseY = mouseOldX = mouseOldY = 0,
331331
c = C.getContext('2d'),
332332
viewWidth = C.width = C.scrollWidth,
333333
viewHeight = C.height = C.scrollHeight,
334-
335334
initParams();
336335
//document.onmousemove = handleMouseMove;
337336
window.addEventListener("resize", handleResize);

src/script/base.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -901,13 +901,23 @@ function Base() {
901901
'background': '#222 url('+bgImg+') center center no-repeat',
902902
'background-size': 'cover'
903903
});
904+
904905
$('#homeTopTitle').hide();
905906
$('.scroll-down').hide();
906907
$('#home').css('margin-top', '40vh');
907908
$('#cb_post_title_url').addClass('post-del-title');
908909

909910
if (window.cnblogsConfig.essayTopAnimationRendered)
910911
require(['TweenMax', 'MyTween'], function() {
912+
$('#notHomeTopCanvas').css({
913+
'margin': 'auto',
914+
'width': '100%',
915+
'height': '100%',
916+
'top': '0',
917+
'bottom': '0',
918+
'left': '0',
919+
'right': '0'
920+
});
911921
initCanvas('notHomeTopCanvas');
912922
start();
913923
});

0 commit comments

Comments
 (0)