1.动画属性:
animation-name: 指定动画的名字
animation-duration: 指定动画持续的时间
animation-delay: 指定动画何时开始
animation-direction:指定动画的方向 ,默认是normal,如果反方向播放动画,则该值为alternate
animation-iteration-count: 指定动画执行的次数
animation-fill-mode: 指定动画最终的位置,如果该值是backwards,则代表最终动画停在原点,如果该值为forwards,表示该动画停留在结束位置
animation-play-state:指定该动画是否暂停还是正在运行 值分为为paused和running
animation-timing-function: 指定动画的速度曲线 值可以为linear(速度始终保持一致)、ease(开始时低速,中间加速,结束前速度减慢)、ease in(动画以低速开始)、 ease out(动画以低速结束)ease in out(动画以低速开始和结束)
2.动画属性简写:name duration timing-function delay iteration-count direction fill-mode