23 lines
742 B
Plaintext
23 lines
742 B
Plaintext
#loading-box(onclick='document.getElementById("loading-box").classList.add("loaded")')
|
|
.loading-bg
|
|
div.loading-img
|
|
.loading-image-dot
|
|
|
|
script.
|
|
const 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() })
|
|
|
|
if (!{theme.pjax && theme.pjax.enable}) {
|
|
document.addEventListener('pjax:send', () => { preloader.initLoading() })
|
|
document.addEventListener('pjax:complete', () => { preloader.endLoading() })
|
|
} |