动画属性Animation
定义和用法
animation 属性是一个简写属性,用于设置六个动画属性:
- animation-name
- animation-duration
- animation-timing-function
- animation-delay
- animation-iteration-count
- animation-direction
属性 | 描述 | CSS |
---|---|---|
@keyframes | 规定动画 | 3 |
animation | 所有动画属性的简写属性除了 animation-play-state 属性 | 3 |
animation-name | 规定@keyframes动画的名称 | 3 |
animation-duration | 规定动画完成一个周期所花费的秒或毫秒 | 3 |
animation-timing-funcation | 规定动画的速度曲线 | 3 |
animation-delay | 规定动画何时开始 | 3 |
animation-iteration-count | 规定动画播放的次数 | 3 |
animation-direction | 规定动画在下一周期是否逆向播放 | 3 |
animation-play-state | 规定动画是否正在运行或暂停 | |
animation-fill-mode | 规定动画对象时间之外的状态 | 3 |
网友评论