On the website that I am developing there is a gif. Gif is loaded when moving from one page to another, the code is like this
<div class="loader-wrap">
<img src="<?php echo base_url('assets/img/matoa-preloader.gif'); ?>">
</div>
i use javascript to limit the time like this
//untuk loading page
$(function() {
$(".loader-wrap").fadeOut(2000, function() {
$(".content").fadeIn(1000);
});
});
the gif is to long, how can i limit to play the gif just for 2 second?