请看这里:
http://www.critocapital.com/investors
在display:none处设置了一个徽标,然后使用jquery显示,并通过animate.css设置动画
$('.banner').show('slow');
$('.banner').addClass('animated bounceInDown modifica_animation');
在BounceInDown动画结束后,图像在Internet Explorer 10+中不再可见(在Chrome,Firefox,Safari中仍然可见)。
可以帮忙吗? 谢谢 弗朗西斯
答案 0 :(得分:0)
您应首先触发addClass,然后显示div。
$('.banner').addClass('animated bounceInDown modifica_animation');
$('.banner').show('slow');