Last active
February 3, 2023 06:34
-
-
Save camilamoreiradev/bb7e4d53db1d7025af9ef0862ca76b10 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
?> | |
<style> | |
.loader { | |
position: fixed; | |
left: 0px; | |
top: 0px; | |
width: 100%; | |
height: 100%; | |
z-index: 9999; | |
background: url('http://i.imgur.com/zAD2y29.gif') 50% 50% no-repeat white; | |
} | |
</style> | |
<div id="loader" class="loader"></div> | |
<script> | |
window.onload = function(){ | |
$(".loader").fadeOut("slow"); | |
}; | |
</script> | |
<?php |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment