當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。