Created
November 2, 2015 01:59
-
-
Save Aziz-Rahman/bb3b9d78540b23f0b41d to your computer and use it in GitHub Desktop.
Effect loader
This file contains 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
<div id="preloader" style="position: fixed; width: 100%; height: 100%; z-index: 999; background-color: #fff; text-align: center;"> | |
<div class="table"> | |
<div class="table-cell"> | |
<i class="preloader-icon fa fa-spinner fa-pulse"></i> | |
</div> | |
</div> | |
</div> | |
<!-- jQuery --> | |
$(window).load(function() { | |
$('#preloader').fadeOut('fast',function(){$(this).remove();}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment