I'm having a problem, I'm trying to add a css animate class to give an effect when I finish loading the page, but it's not working, it looks like it'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');
})