animation-direction: normal|alternate
normal默认值。动画应该正常播放。
alternate动画应该轮流反向播放。
animation-direction 属性定义是否应该轮流反向播放动画。
如果 animation-direction 值是 "alternate",则动画会在奇数次数(1、3、5 等等)正常播放,而在偶数次数(2、4、6 等等)向后播放。
注释:如果把动画设置为只播放一次,则该属性没有效果。
默认值:normal
继承性:no
版本:CSS3
JavaScript 语法:
object.style.animationDirection="alternate"
animation: 属性是一个简写属性,用于设置六个动画属性:animation: name duration timing-function delay iteration-count direction
对应上面的属性意思: 动画名称 动画执行时间 动画速度曲线 延迟时间 执行次数 执行方向
nternet Explorer 10、Firefox 以及 Opera 支持 animation 属性。
Safari 和 Chrome 支持替代的 -webkit-animation 属性。
注释:Internet Explorer 9 以及更早的版本不支持 animation 属性。
animation-name: keyframename|none动画名称
keyframename 自定义的名字
none 无动画效果
animation-duration: time动画执行时间
time 秒或毫秒
animation-delay:time动画效果延迟时间
time 秒或毫秒
animation-timing-function: value动画速度曲线
linear:规定以相同速度开始至结束的过渡效果(等于 cubic-bezier(0,0,1,1))。
ease:规定慢速开始,然后变快,然后慢速结束的过渡效果(cubic-bezier(0.25,0.1,0.25,1))。
ease-in:规定以慢速开始的过渡效果(等于 cubic-bezier(0.42,0,1,1))。
ease-out:规定以慢速结束的过渡效果(等于 cubic-bezier(0,0,0.58,1))。
ease-in-out :规定以慢速开始和结束的过渡效果(等于 cubic-bezier(0.42,0,0.58,1))。
cubic-bezier(n,n,n,n):在 cubic-bezier 函数中定义自己的值。可能的值是 0 至 1 之间的数值。
animation-iteration-count: n|infinite动画执行次数
n 具体的次数
infinite 无限重复
animation-direction: normal|alternate动画执行方向
normal 正常顺序(默认值)
alternate 动画轮流反向播放
animation-play-state: paused|running动画执行状态
paused 暂停动画
running 运行动画
animation-fill-mode : none | forwards | backwards | both动画执行过程效果是否可见
none 不改变(默认值)
forwards 当动画完成后,保持最后一个属性值(在最后一个关键帧中定义)
backwards 在 animation-delay 所指定的一段时间内,在动画显示之前,应用开始属性值(在第一个关键帧中定义)
both 向前和向后填充模式都被应用