CSS3 animation-direction 属性
实例
暂停动画:
div
{
animation-direction:alternate;
-webkit-animation-direction:alternate; /* Safari 和 Chrome */
}
浏览器支持
IE | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|
Internet Explorer 10、Firefox 以及 Opera 支持 animation-direction 属性。
Safari 和 Chrome 支持替代的 -webkit-animation-direction 属性。
注释:Internet Explorer 9 以及更早的版本不支持 animation-direction 属性。
定义和用法
animation-direction 属性定义是否应该轮流反向播放动画。
如果 animation-direction 值是 "alternate",则动画会在奇数次数(1、3、5 等等)正常播放,而在偶数次数(2、4、6 等等)向后播放。
注释:如果把动画设置为只播放一次,则该属性没有效果。
默认值: | normal |
---|---|
继承性: | no |
--- | --- |
版本: | CSS3 |
--- | --- |
JavaScript 语法: | object.style.animationDirection="alternate" |
--- | --- |
语法
animation-direction: normal|alternate;
值 | 描述 | 测试 |
---|---|---|
normal | 默认值。动画应该正常播放。 | 测试 |
alternate | 动画应该轮流反向播放。 | 测试 |
相关页面
CSS3 教程:CSS3 动画