mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-16 20:30:53 +08:00
2. feat: 可隱藏Mobile sidebar 子菜單 3. refactor: archives和card-post 改為flex佈局 4. feat: 當寬度小於1024時,點擊toc滾動,增加滾動效果 5. feat: 點擊滾動,如果滾動是向上時,將會偏移60px, 避免導航欄遮擋 close #317 6. feat: 可配置font-size 7. refactor: 去除字體放大、縮小按鈕 8. refactor: 部分css由'px'改為'em',適應font-size值改變而改變 9. feat: pjax增加exclude配置 10. fix: 修復canvas_nest 配置沒有生效的Bugs 11. feat: 新增 cnzz_analytics 12. feat: 騰訊分析改為騰訊移動分析,並適配pjax 13. perf: 改cookies為localstore存儲 14. feat: 設置中的theme_color可單獨配置幾個,而不需要全部開啟 close #314 15. feat: butterfly.yml 採用deepMerge, 與_config文件進行合併而不是替換 16. fix: 修復rightsize-bottom配置無效的bug 17. refactor: aside增加position sticky 18. refactor: 調整webinfo 寬度小時的顯示 19. feat: 更改addtoany item的寫法 20. refactor: aside 內容邊距調整 21. feat: 增加最後更新時間顯示
83 lines
2.5 KiB
JavaScript
83 lines
2.5 KiB
JavaScript
! function () {
|
|
var cn = document.getElementById('canvas_nest');
|
|
var mb = cn.getAttribute("mobile");
|
|
|
|
if (mb == 'false' && (/Android|webOS|iPhone|iPod|iPad|BlackBerry/i.test(navigator.userAgent))) {
|
|
return;
|
|
}
|
|
|
|
function o(w, v, i) {
|
|
return w.getAttribute(v) || i
|
|
}
|
|
|
|
function j(i) {
|
|
return document.getElementsByTagName(i)
|
|
}
|
|
|
|
function l() {
|
|
var v = cn;
|
|
return {
|
|
z: o(v, "zIndex", -1),
|
|
o: o(v, "opacity", 0.5),
|
|
c: o(v, "color", "0,0,0"),
|
|
n: o(v, "count", 99)
|
|
}
|
|
}
|
|
|
|
function k() {
|
|
r = u.width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth, n = u.height = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight
|
|
}
|
|
|
|
function b() {
|
|
e.clearRect(0, 0, r, n);
|
|
var w = [f].concat(t);
|
|
var x, v, A, B, z, y;
|
|
t.forEach(function (i) {
|
|
i.x += i.xa, i.y += i.ya, i.xa *= i.x > r || i.x < 0 ? -1 : 1, i.ya *= i.y > n || i.y < 0 ? -1 : 1, e.fillRect(i.x - 0.5, i.y - 0.5, 1, 1);
|
|
for (v = 0; v < w.length; v++) {
|
|
x = w[v];
|
|
if (i !== x && null !== x.x && null !== x.y) {
|
|
B = i.x - x.x, z = i.y - x.y, y = B * B + z * z;
|
|
y < x.max && (x === f && y >= x.max / 2 && (i.x -= 0.03 * B, i.y -= 0.03 * z), A = (x.max - y) / x.max, e.beginPath(), e.lineWidth = A / 2, e.strokeStyle = "rgba(" + s.c + "," + (A + 0.2) + ")", e.moveTo(i.x, i.y), e.lineTo(x.x, x.y), e.stroke())
|
|
}
|
|
}
|
|
w.splice(w.indexOf(i), 1)
|
|
}), m(b)
|
|
}
|
|
var u = document.createElement("canvas"),
|
|
s = l(),
|
|
e = u.getContext("2d"),
|
|
r, n, m = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame || function (i) {
|
|
window.setTimeout(i, 1000 / 45)
|
|
},
|
|
a = Math.random,
|
|
f = {
|
|
x: null,
|
|
y: null,
|
|
max: 20000
|
|
};
|
|
u.style.cssText = "position:fixed;top:0;left:0;z-index:" + s.z + ";opacity:" + s.o;
|
|
j("body")[0].appendChild(u);
|
|
k(), window.onresize = k;
|
|
window.onmousemove = function (i) {
|
|
i = i || window.event, f.x = i.clientX, f.y = i.clientY
|
|
}, window.onmouseout = function () {
|
|
f.x = null, f.y = null
|
|
};
|
|
for (var t = [], p = 0; s.n > p; p++) {
|
|
var h = a() * r,
|
|
g = a() * n,
|
|
q = 2 * a() - 1,
|
|
d = 2 * a() - 1;
|
|
t.push({
|
|
x: h,
|
|
y: g,
|
|
xa: q,
|
|
ya: d,
|
|
max: 6000
|
|
})
|
|
}
|
|
setTimeout(function () {
|
|
b()
|
|
}, 100)
|
|
}(); |