在bounceInDown动画结束后,资产在Internet Explorer 10中变得不可见

时间:2017-01-13 17:23:10

标签: jquery css animate.css

请看这里:

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中仍然可见)。

可以帮忙吗? 谢谢 弗朗西斯

1 个答案:

答案 0 :(得分:0)

您应首先触发addClass,然后显示div。

$('.banner').addClass('animated bounceInDown modifica_animation');
$('.banner').show('slow');