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