Skip to content

Instantly share code, notes, and snippets.

@camilamoreiradev
Last active February 3, 2023 06:34
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save camilamoreiradev/bb7e4d53db1d7025af9ef0862ca76b10 to your computer and use it in GitHub Desktop.
Save camilamoreiradev/bb7e4d53db1d7025af9ef0862ca76b10 to your computer and use it in GitHub Desktop.
?>
<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