我的 HTML:
<div class="effect-wrapper">
<div class="effect-content"></div>
<div class="effect-content"></div>
<div class="effect-content"></div>
<div class="effect-content"></div>
</div>
我的 jQuery:
$(".effect-wrapper .effect-content").each(function (j) {
$(this).css({'-webkit-animation-delay':(j * 300) + 'ms'
,'-moz-animation-delay':(j * 300) + 'ms'
, '-o-animation-delay':(j * 300) + 'ms'
, 'animation-delay':(j * 300) + 'ms'});
});`
但是当我在使用 Firebug 的 Firefox 上看到时,.effect-content 类只包含样式“animation-delay”,而不是“-moz-animation-delay”。任何人都可以帮助我吗?非常感谢您的帮助。