I have gif
image and I want to load gif
image which shows loading website until page completely loads.I try gif
image not working well. Gif
not animated till web site completely load.Can anyone help me?
Here is my code:
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
</script>
<script type="text/javascript">
$(window).load(function() {
$(".loader").fadeOut("slow");
})
</script>
<style type="text/css">
.loader {
background: url('image/loading.gif') 50% 50% no-repeat rgb(0, 0, 0);
background-color: black;
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 999999999999999999999999999999999999999;
opacity: .7;
}
</style>
<div class="loader">
<body>
</body>
And here is my website link a link
Here is an alternate.
Add this code a very simple way to add loader on your web page: