4
I’m having a problem, I’m trying to add a class of Animate css to give an effect when I finish loading the page, but it’s not working, it seems he’s adding the class before the page finishes loading, see the code:
$(window).load(function(){
$(".progresso").delay(5000).fadeOut();
$(".preloader").delay(5000).fadeOut("slow");
$('.bemvindo').addClass('animated bounceInDown');
})
it didn’t work, it still doesn’t have the effect
– Otavio Fagundes