Skip to content

Instantly share code, notes, and snippets.

@theWhiteFox
Created June 22, 2017 11:03
Show Gist options
  • Select an option

  • Save theWhiteFox/5236f262f28e9752b67ef6ce35f7e92a to your computer and use it in GitHub Desktop.

Select an option

Save theWhiteFox/5236f262f28e9752b67ef6ce35f7e92a to your computer and use it in GitHub Desktop.
SUPER SIMPLE FULL PAGE PRELOADER
<div class="js"><!--this is supposed to be on the HTML element but codepen won't let me do it-->
<body>
<div id="preloader"></div>
<h1>SUPER SIMPLE FULL PAGE PRELOADER</h1>
<p>Works with modernizr, or you could just add your own js class to the html element using javascript</p>
<p>You can make it fit your site better by generating your own image here: http://ajaxload.info/ then change the background color in the css</p>
<p>The example below doesn't fade out because the pageload event isn't fireing I'm guessing? but it will on your site when your page loads.</p>
</body>
</div><!--END: HTML element-->
jQuery(document).ready(function($) {
// site preloader -- also uncomment the div in the header and the css style for #preloader
$(window).load(function(){
$('#preloader').fadeOut('slow',function(){$(this).remove();});
});
});
.js div#preloader { position: fixed; left: 0; top: 0; z-index: 999; width: 100%; height: 100%; overflow: visible; background: #333 url('http://files.mimoymima.com/images/loading.gif') no-repeat center center; }

SUPER SIMPLE FULL PAGE PRELOADER

Covers the entire screen, great if you want to hide @font-face fout -- by mimoYmima.com

A Pen by Brent Lagerman on CodePen.

License.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment