13 lines
378 B
Plaintext
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()) |