1

css アニメーションには -webkit-animation の省略形があることを知っています。

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 {-webkit-animation: example 1s ease 0 2 alternate;}

しかし、私の実験では -moz-animation が機能しなかったようです。本当?

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

1 に答える 1

0

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

Mozillaブラウザの拡張機能の完全なリストは次のとおりです。

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

于 2012-04-01T12:26:50.160 に答える