1
工作我的HTML:的jQuery的.css({ ' - MOZ動畫延時': '300毫秒'})未在Firefox
<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上看到時,class .effect-content只包含style'animation-delay',而不是'-moz-animation-delay'。 任何人都可以幫助我嗎?非常感謝您的幫助。
不要在新的或較新的用戶不斷鏈接到W3Schools的。他們可能會認爲其餘的信息是準確的。查看此鏈接瞭解更多信息。 http://w3fools.com/ – user1596138
好的,我編輯我的回覆!謝謝你的信息,喬賽亞! – oinant