CSS3 animation-delay 属性
实例
等待两秒,然后开始动画::
animation-delay:2s;
-webkit-animation-delay:2s; /* Safari and Chrome */
-webkit-animation-delay:2s; /* Safari and Chrome */
尝试一下 »
在此页底部有更多的例子。
浏览器支持
Internet Explorer 10, Firefox, 和 Opera都支持animation-delay 属性.
Safari和Chrome通过私有属性-WebKit-animation-delay支持。.
注意: Internet Explorer 9及更早IE版本不支持animation-delay 属性。.
标签定义及使用说明
animation-delay属性定义动画什么时候开始。
定义animation--delay值是秒(s)或毫秒(ms)。
提示: 允许负值,- 2S立即开始动画,而是开始到2秒的动画。
默认值: | 0 |
---|---|
继承: | no |
版本: | CSS3 |
JavaScript 语法: | object object.style.animationDelay="2s" |
语法
animation-delay: time;
值 | 描述 | 测试 |
---|---|---|
time | 可选。定义经过多少秒或毫秒的等待动画开始。默认值为0 | 测试 » |
Try it Yourself - Examples
实例
负值,请注意,动画启动进入动画周期2秒:
animation-delay: -2s /* W3C and Opera */
-moz-animation-delay: -2s /* Firefox */
-webkit-animation-delay: -2s /* Safari and Chrome */
-moz-animation-delay: -2s /* Firefox */
-webkit-animation-delay: -2s /* Safari and Chrome */
尝试一下 »
相关文章
CSS3 教程: CSS3 动画