CSS3动画属性animation

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 */
}
posted on 2016-08-14 14:46  魏新鹏  阅读(175)  评论(0编辑  收藏  举报