修复百分比问题

This commit is contained in:
sunheyi 2022-11-05 09:39:08 +08:00
parent e244b2c186
commit 84b291b5f3
1 changed files with 5 additions and 2 deletions

View File

@ -757,7 +757,7 @@ document.addEventListener('pjax:send', function () {
heo.showLoading();
})
document.addEventListener('pjax:complete', function () {
document.addEventListener('load', function () {
coverColor()
addRightMenuClickEvent()
navTitle()
@ -781,4 +781,7 @@ document.addEventListener('pjax:complete', function () {
heo.initThemeColor()
heo.hideLoading()
heo.tagPageActive()
})
})
window.onscroll = function () {
percent();
};