-webkit-animation 是可以缩写的,比如
div {
-webkit-animation-name: example;
-webkit-animation-duration: 1s;
-webkit-animation-timing-function: ease;
-webkit-animation-delay: 1s;
-webkit-animation-iteration-count: 2;
-webkit-animation-direction: alternate;
}
可以缩写成
div {-webkit-animation: example 1s ease 1s 2 alternate;}
但是我试了下
div {-moz-animation: example 1s ease 1s 2 alternate;}
好像就不生效了,是 -moz-animation 就不能这样缩写么?
div {
-webkit-animation-name: example;
-webkit-animation-duration: 1s;
-webkit-animation-timing-function: ease;
-webkit-animation-delay: 1s;
-webkit-animation-iteration-count: 2;
-webkit-animation-direction: alternate;
}
可以缩写成
div {-webkit-animation: example 1s ease 1s 2 alternate;}
但是我试了下
div {-moz-animation: example 1s ease 1s 2 alternate;}
好像就不生效了,是 -moz-animation 就不能这样缩写么?