Skip to content

Instantly share code, notes, and snippets.

@ar2zee
Created April 25, 2017 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ar2zee/4dffef86751a1fe13d72a262dce8b974 to your computer and use it in GitHub Desktop.
Save ar2zee/4dffef86751a1fe13d72a262dce8b974 to your computer and use it in GitHub Desktop.
Jquery preloader
#loader {
background: none repeat scroll 0 0 #ffffff;
bottom: 0;
height: 100%;
left: 0;
position: fixed;
right: 0;
top: 0;
width: 100%;
z-index: 9999;
}
#loaderInner {
background-image: url("../img/load.gif");
background-size: cover;
background-repeat: no-repeat;
// background-position: center center;
background-color: #fff;
height: 60px;
width: 60px;
margin-top: -30px;
margin-left: -30px;
left: 50%;
top: 50%;
position: absolute;
}
$(window).load(function() {
$("#loaderInner").fadeOut();
$("#loader").delay(400).fadeOut("slow");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment