请在这里看看:
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');
关于jquery - bounceInDown动画结束后, Assets 在Internet Explorer 10中变得不可见,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41640129/