标签:
animation 属性是一个简写属性,用于设置六个动画属性:
1 animation-name
2 animation-duration
3 animation-timing-function
4 animation-delay
5 animation-iteration-count
6 animation-direction
例子如下
div
{
animation:mymove 5s infinite;
-webkit-animation:mymove 5s infinite; /* Safari 和 Chrome */
}
标签:
原文地址:http://www.cnblogs.com/135wxp/p/5770229.html