Reset author
This commit is contained in:
commit
2fcf9bfdda
108 changed files with 3642 additions and 0 deletions
12
docs/src/js/loader.js
Normal file
12
docs/src/js/loader.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
document.getElementById('loader').style.display = 'block';
|
||||
|
||||
function fadeOutLoader() {
|
||||
const loader = document.getElementById('loader');
|
||||
loader.classList.add('fade-out');
|
||||
|
||||
setTimeout(() => {
|
||||
loader.remove();
|
||||
}, 1000);
|
||||
}
|
||||
|
||||
setTimeout(fadeOutLoader, 2500);
|
||||
Loading…
Add table
Add a link
Reference in a new issue