Created
November 17, 2016 19:09
-
-
Save vladzadvorny/0eb1cac333ec7428d74c619e3596f6dc 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
$(window).on('load', function() { | |
$(".loader").fadeOut("slow"); | |
}); | |
.loader { | |
position: fixed; | |
left: 0px; | |
top: 0px; | |
width: 100%; | |
height: 100%; | |
z-index: 9999; | |
background: url('../img/loader.gif') 50% 50% no-repeat rgb(249, 249, 249); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment