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

asset become invisible in Internet Explorer 10 after bounceInDown animation ends

请看这里:

https://codepen.io/copperjohn/pen/vgKeQj

在 display:none 设置了一个徽标,然后使用 jquery 使其可见,并通过 animate.css

制作动画
$('.banner').show('slow');
$('.banner').addClass('animated bounceInDown modifica_animation');

BounceInDown 动画结束后,图像在 Internet Explorer 10+ 中不再可见(在 Chrome、Firefox、Safari 中仍然可见)。

可以帮忙吗? 谢谢 弗朗切斯科

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

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