CSS3 animation-delay 属性

实例

画:

div
{
animation-delay:2s;
-webkit-animation-delay:2s; /* Safari 和 Chrome */
}

Internet Explorer 10、Firefox 以及 Opera 支持 animation-delay 属性。

Safari 和 Chrome -webkit-animation-delay 属性。

注释:Internet Explorer 9 animation-delay 属性。

animation-delay 。

animation-delay 秒计。

提示:-2s 过 2 。

默认值: 0
继承性: no
版本: CSS3
JavaScript 语法: object.style.animationDelay="2s"

语法

animation-delay: time;
描述 测试
time 值是 0。 测试

- 实例

2 周期:

animation-delay: -2s /* W3C 和 Opera */
-moz-animation-delay: -2s /* Firefox */
-webkit-animation-delay: -2s /* Safari 和 Chrome */

相关页面

CSS3 教程:CSS3 动画