q78kgblog 0.0.0-1720417924152 → 0.0.0-1720429643771
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/404.html +3 -3
- package/about/index.html +5 -5
- package/archives/2023/02/index.html +4 -4
- package/archives/2023/04/index.html +4 -4
- package/archives/2023/05/index.html +4 -4
- package/archives/2023/08/index.html +4 -4
- package/archives/2023/09/index.html +4 -4
- package/archives/2023/index.html +4 -4
- package/archives/2024/01/index.html +4 -4
- package/archives/2024/02/index.html +4 -4
- package/archives/2024/index.html +4 -4
- package/archives/index.html +4 -4
- package/atom.xml +9 -9
- package/bangumis/index.html +4 -4
- package/bigpie/index.html +3 -3
- package/categories/Hexo/index.html +4 -4
- package/categories/index.html +3 -3
- package/categories//345/271/264/347/273/210/346/200/273/347/273/223/index.html +4 -4
- package/categories//347/264/240/346/235/220/index.html +4 -4
- package/categories//351/227/262/350/201/212/346/235/202/350/260/210/index.html +4 -4
- package/content.json +1 -1
- package/css/ariasakablog.css +0 -6669
- package/css/danmaku.css +0 -2
- package/fcircle/index.html +3 -3
- package/fontawesome/index.html +3 -3
- package/index.html +11 -11
- package/js/commentBarrage.js +201 -201
- package/js/day.js +110 -110
- package/js/dianzan.js +5 -5
- package/js/dis.js +242 -241
- package/js/fps.js +55 -54
- package/js/gitalker.js +1 -1
- package/js/heimu.js +16 -15
- package/js/hide.show.js +5 -5
- package/js/languages.js +510 -510
- package/js/lunar.js +517 -517
- package/js/main.js +8 -8
- package/js/resizeTop.js +31 -31
- package/js/settings.js +303 -302
- package/js/sitetime.js +11 -11
- package/js/welcomeconsole.js +9 -8
- package/links/index.html +3 -3
- package/othersite/index.html +3 -3
- package/package.json +1 -1
- package/posts/164ef646/index.html +5 -5
- package/posts/228c2ef8/index.html +5 -5
- package/posts/a9a6c1fb/index.html +5 -5
- package/posts/c262e439/index.html +5 -5
- package/posts/c81531cf/index.html +5 -5
- package/posts/ccdf7cfc/index.html +5 -5
- package/posts/de1f83f4/index.html +5 -5
- package/posts/e54f7476/index.html +5 -5
- package/random.html +2 -2
- package/sitemap.txt +2 -2
- package/sitemap.xml +6 -6
- package/tags/AI/index.html +5 -5
- package/tags/Butterfly/index.html +5 -5
- package/tags/Cloudflare/index.html +5 -5
- package/tags/DiffSinger/index.html +5 -5
- package/tags/Hexo/index.html +5 -5
- package/tags/Next/index.html +5 -5
- package/tags/RAID/index.html +5 -5
- package/tags/Vercel/index.html +5 -5
- package/tags/Workers/index.html +5 -5
- package/tags/index.html +3 -3
- package/tags//344/270/273/351/242/230/index.html +5 -5
- package/tags//345/206/231/344/275/234/index.html +5 -5
- package/tags//345/245/263/346/200/247/346/204/217/350/257/206/index.html +5 -5
- package/tags//345/255/246/344/271/240/index.html +5 -5
- package/tags//345/256/266/351/207/214/344/272/221/index.html +5 -5
- package/tags//345/271/264/347/273/210/346/200/273/347/273/223/index.html +5 -5
- package/tags//346/212/230/350/205/276/index.html +5 -5
- package/tags//346/227/245/345/270/270/index.html +5 -5
- package/tags//346/234/215/345/212/241/345/231/250/index.html +5 -5
- package/tags//346/265/252/346/275/256/index.html +5 -5
- package/tags//347/256/200/347/210/261/index.html +5 -5
- package/tags//350/207/252/345/212/250/346/240/207/346/263/250/index.html +5 -5
- package/tags//350/256/272/346/226/207/index.html +5 -5
- package/tags//350/260/267/346/255/214/347/277/273/350/257/221/index.html +5 -5
- package/tags//350/264/237/350/275/275/345/235/207/350/241/241/index.html +5 -5
- package/tags//351/207/221/345/217/245/index.html +5 -5
- package/tags//351/255/224/346/224/271/index.html +5 -5
package/js/hide.show.js
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
-
function isInViewPortOfOne
|
2
|
-
const viewPortHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight
|
1
|
+
function isInViewPortOfOne(el) {
|
2
|
+
const viewPortHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight
|
3
3
|
const offsetTop = el.offsetTop
|
4
4
|
const scrollTop = document.documentElement.scrollTop
|
5
5
|
const top = offsetTop - scrollTop
|
6
6
|
return top <= viewPortHeight
|
7
7
|
}
|
8
8
|
$(window).scroll(function () {
|
9
|
-
if(isInViewPortOfOne(document.getElementsByTagName("footer")[0])){
|
9
|
+
if (isInViewPortOfOne(document.getElementsByTagName("footer")[0])) {
|
10
10
|
$(".aplayer .aplayer-body").hide();
|
11
11
|
$("#fps").hide();
|
12
|
-
}
|
13
|
-
else{
|
12
|
+
}
|
13
|
+
else {
|
14
14
|
$(".aplayer .aplayer-body").show();
|
15
15
|
$("#fps").show();
|
16
16
|
}
|