Is there a way to specify a specific duration for the preloader on my website? I find that after the images have preloaded, I am unable to see any animations in the home section.
$(window).load(function() {
$('#preloader').fadeOut();
$('.preloader_img').delay(150).fadeOut('slow');
});
Thank you!