Skip to content

Instantly share code, notes, and snippets.

@levnhub
Last active June 5, 2018 13:24
Show Gist options
  • Save levnhub/55478e9bfd5d7f9c89f794fb21d6008f to your computer and use it in GitHub Desktop.
Save levnhub/55478e9bfd5d7f9c89f794fb21d6008f to your computer and use it in GitHub Desktop.
Preload
<style>
.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-repeat: no-repeat;
background-position: center center;
background-color: #fff;
background-size: 100%;
height: 60px;
width: 60px;
margin-top: -30px;
margin-left: -30px;
left: 50%;
top: 50%;
position: absolute;
}
</style>
<!-- Pre-loader -->
<div class="loader">
<div class="loaderInner"></div>
</div>
<!-- Pre-loader -->
<script>
$(document).ready(function () {
// Pre-loader
$(".loaderInner").fadeOut();
$(".loader").delay(400).fadeOut("slow");
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment