2012-04-01 12 views
1

私は、CSSアニメーションは、-webkit-アニメーションの速記を持って知っている:cssアニメーションは-moz-animationの省略形を得ることができますか?

div {-webkit-animation: example 1s ease 0 2 alternate;} 

しかし、-moz-アニメーションはなかったようです:私たちはアニメーションコードの省略形を使用することができます

div { 
-webkit-animation-name: example; 
-webkit-animation-duration: 1s; 
-webkit-animation-timing-function: ease; 
-webkit-animation-delay: 0s; 
-webkit-animation-iteration-count: 2; 
-webkit-animation-direction: alternate; 
} 

私の実験で働きます。本当?

div {-moz-animation: example 1s ease 0 2 alternate;} //did not work in my experiment 

答えて

0

-moz-animation拡張子があります。ここ

は、Mozillaブラウザ用の拡張機能の完全なリストである:

https://developer.mozilla.org/en/CSS_Reference/Mozilla_Extensions

+0

私はmozillaのページでは、私は-moz-アニメーションの速記については何も見ていない、私の質問を更新した、私を助けてください、ありがとう。 – Linlis

関連する問題