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 */ }
时间: 2024-10-14 10:21:54