当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Style animationDuration属性用法及代码示例


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 秒 -

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style animationDuration Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。