-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
after loading all page elements(including images), hide the preloader (…
…#88) * After loading all page elements(including images), hide the preloader * added fadeout effect to the preloader
- Loading branch information
Showing
2 changed files
with
7 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,13 +12,8 @@ | |
crossorigin="anonymous" | ||
/> | ||
<link rel="stylesheet" href="assets/styles/main.css" /> | ||
<script> | ||
function removeloader() { | ||
document.getElementById('wrapper').style.display = 'none'; | ||
} | ||
</script> | ||
</head> | ||
<body onload="removeloader()"> | ||
<body> | ||
<div id="wrapper"> | ||
<svg | ||
width="65px" | ||
|
@@ -142,12 +137,9 @@ <h3 class="time"> | |
Made with <span id="hearts">♥</span> by GNU Linux Users' Group | ||
</footer> | ||
|
||
<!--jquery library full--> | ||
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> | ||
<!--bootstrap libraries--> | ||
<script | ||
src="https://code.jquery.com/jquery-3.3.1.slim.min.js" | ||
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" | ||
crossorigin="anonymous" | ||
></script> | ||
<script | ||
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" | ||
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" | ||
|
@@ -161,9 +153,6 @@ <h3 class="time"> | |
<!--Vanilla tilt library--> | ||
<script src="https://unpkg.com/[email protected]/dest/tilt.jquery.min.js"></script> | ||
|
||
<!--jquery library full--> | ||
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> | ||
|
||
<!--main library--> | ||
<script src="assets/js/main.js"></script> | ||
|
||
|