Skip to content

Instantly share code, notes, and snippets.

@mubahood
Forked from snowman-repos/gist:3822494
Created November 13, 2017 19:53
Show Gist options
  • Save mubahood/347de96f92c1b90d7d42c86e268925c9 to your computer and use it in GitHub Desktop.
Save mubahood/347de96f92c1b90d7d42c86e268925c9 to your computer and use it in GitHub Desktop.
jQuery: Display Loading Animation until Page Fully Loaded
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset='UTF-8'>
<title>Simple Loader</title>
<style>
/* This only works with JavaScript,
if it's not present, don't show loader */
.no-js #loader { display: none; }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script src="http://github.com/Modernizr/Modernizr/raw/master/modernizr.js"></script>
<script>
// Wait for window load
$(window).load(function() {
// Animate loader off screen
$("#loader").animate({
top: -200
}, 1500);
});
</script>
</head>
<body>
<img src="download.png" id="loader">
<img src="http://farm6.static.flickr.com/5299/5400751421_55d49b2786_o.jpg">
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment