我的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'。 任何人都可以帮助我吗?非常感谢你的帮助。
答案 0 :(得分:2)
这是因为根据https://developer.mozilla.org/en-US/docs/Web/CSS/animation-delay
,firefox使用标准的'animation-delay'属性