Skip to content

Instantly share code, notes, and snippets.

@Aziz-Rahman
Created November 2, 2015 01:59
Show Gist options
  • Save Aziz-Rahman/bb3b9d78540b23f0b41d to your computer and use it in GitHub Desktop.
Save Aziz-Rahman/bb3b9d78540b23f0b41d to your computer and use it in GitHub Desktop.
Effect loader
<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