a
循环一次,2个色@keyframes a{ from {background:red;} to {background:yellow;} }
b
循环三次,4个色animation-iteration-count:3;
c
无限循环,4个色animation-iteration-count:infinite;
d
动画高速开始animation-timing-function:linear;
e
动画3S后开始animation-delay:3s;
f
动画播放完后倒会播放animation-direction:alternate;
g
默认暂停,鼠标放上开始动animation-play-state:paused;
h
animation-fill-mode:forwards
动画运行2次完成后,回到结束时的状态i
animation-fill-mode:backwards;
动画运行2次完成后,回到开始时的状态j
animation-fill-mode:both;的状态和animation-direction的值(是否逆向播放)以及animation-iteration-count的值有关(播放次数);animation-direction的值为alternate;播放次数为2那么其最后回带到开始状态,如果播放次数为3,那么最后回到结束状态animation:ceshi 5s ease-in 2 alternate both;
-webkit-animation:ceshi 5s ease-in 2 alternate both;/* Safari 和 Chrome */
@keyframes ceshi { from {left:0px;} to {left:200px;} }running是默认值,所以animation-play-state的值可不写