animationDuration 属性用于指定动画完成一个循环所需的时间长度。
用法
以下是语法 -
设置 animationDuration 属性 -
object.style.animationDuration = "time|initial|inherit"
值
以下是值 -
值 | 描述 |
---|---|
Time | 用于提及动画开始前等待的时间(以秒或毫秒为单位)。时间的默认值为 0。 |
initial | 用于将此属性设置为初始值。 |
inherit | 继承父属性值 |
示例
让我们看一个 animationDuration 属性的例子 -
<!DOCTYPE html>
<html>
<head>
<style>
div {
width:25px;
height:25px;
border-radius:50%;
border:8px solid orange;
position:relative;
animation:ring infinite;
animation-duration:5s;
}
@keyframes ring {
from {top:0px; left:0px}
to {border-color:purple; left:500px;}
}
</style>
<script>
function changeDuration(){
document.getElementById("DIV1").style.animationDuration="10s";
document.getElementById("Sample").innerHTML="The animation duration has been increased from 5s to 10s";
}
</script>
</head>
<body>
<div id="DIV1"></div>
<p>Click the below button to create the above animation duration</p>
<button onclick="changeDuration()">CHANGE DURATION</button>
<p id="Sample"></p>
</body>
</html>
输出
这将产生以下输出 -
一段时间后动画会改变颜色 -
单击“更改持续时间”按钮后,动画持续时间将增加到 10 秒 -
相关用法
- HTML DOM Style animationDelay属性用法及代码示例
- HTML DOM Style animationDirection属性用法及代码示例
- HTML DOM Style animationIterationCount属性用法及代码示例
- HTML DOM Style animationFillMode属性用法及代码示例
- HTML DOM Style animation属性用法及代码示例
- HTML DOM Style animationTimingFunction属性用法及代码示例
- HTML DOM Style animationName属性用法及代码示例
- HTML DOM Style animationPlayState属性用法及代码示例
- HTML DOM Style alignSelf属性用法及代码示例
- HTML DOM Style alignContent属性用法及代码示例
- HTML DOM Style alignItems属性用法及代码示例
- HTML DOM Style overflowY属性用法及代码示例
- HTML DOM Style pageBreakAfter属性用法及代码示例
- HTML DOM Style transition属性用法及代码示例
- HTML DOM Style outlineOffset属性用法及代码示例
- HTML DOM Style maxWidth属性用法及代码示例
- HTML DOM Style textAlignLast属性用法及代码示例
- HTML DOM Style borderBottomWidth属性用法及代码示例
- HTML DOM Style width属性用法及代码示例
- HTML DOM Style margin属性用法及代码示例
注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style animationDuration Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。