My-Blog-Hexo/themes/butterfly/layout/includes/loading/loading-js.pug
2024-12-18 20:27:43 +08:00

13 lines
378 B
Plaintext

script.
var preloader = {
endLoading: () => {
document.body.style.overflow = 'auto';
document.getElementById('loading-box').classList.add("loaded")
},
initLoading: () => {
document.body.style.overflow = '';
document.getElementById('loading-box').classList.remove("loaded")
}
}
window.addEventListener('load',preloader.endLoading())