Reafcatred the stylesheets and made fixes to the Resume page.
This commit is contained in:
parent
8cc8917aa8
commit
7ddca3c39d
14 changed files with 366 additions and 329 deletions
16
docs/src/js/loader.js
Normal file
16
docs/src/js/loader.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
// ---------------------
|
||||
// This script loads the page loading animation.
|
||||
// ---------------------
|
||||
|
||||
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