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