I am trying to use a gif as preloader in wordpress. I want this gif to show exactly 5 seconds. I have found ways to do that in html/css/js but could not find how to do that in WordPress. I have found several plugin related to this but none of it really meets my requirement. Can anyone please help me here?
I am trying to use a gif as preloader in wordpress. I want this gif to show exactly 5 seconds. I have found ways to do that in html/css/js but could not find how to do that in WordPress. I have found several plugin related to this but none of it really meets my requirement. Can anyone please help me here?
add your code with class for ex .loading-wrapper in your header then add this code in your script
setTimeout(function(){
$('.loading-wrapper').slideUp();}, 5000);