目录

CSS animation-duration 属性


示例

指定动画应在 3 秒内完成一个循环:

div {
  animation-duration: 3s;
}
亲自试一试 »

定义和用法

这个animation-duration属性定义动画完成一个周期所需的时间。

默认值: 0
遗传:
可动画: 不。阅读可动画的
版本: CSS3
JavaScript 语法: 对象.style.animationDuration="3s"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

后跟 -webkit-、-moz- 或 -o- 的数字指定使用前缀的第一个版本。

Property
animation-duration 43.0
3.0 -webkit-
10.0 16.0
5.0 -moz-
9.0
4.0 -webkit-
30.0
15.0 -webkit-
12.0 -o-

CSS 语法

animation-duration: time|initial|inherit;

属性值

Value Description Demo
time Specifies the length of time an animation should take to complete one cycle. This can be specified in seconds or milliseconds. Default value is 0, which means that no animation will occur Play it »
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS教程:CSS 动画

HTML DOM 参考:动画持续时间属性