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


HTML DOM Style animationName屬性用法及代碼示例


animationName 屬性用於獲取或設置@keyframes 引用的動畫名稱。

用法

以下是語法 -

設置 animationName 屬性 -

object.style.animationName = "none|keyframename|initial|inherit"

以下是值 -

Sr.No值和描述
1None
這是默認值,提到不會有動畫。
2keyframename
指定要綁定選擇器的關鍵幀名稱。
3initial
用於將此屬性設置為初始值。
4inherit
繼承父屬性值。

示例

讓我們看一下 animationName 屬性的示例 -

<!DOCTYPE html>
<html>
<head>
<style>
   div {
      width:60px;
      height:40px;
      border:10px groove fuchsia;
      position:relative;
      animation-name:bravo;
      animation-iteration-count:infinite;
      animation-duration:5s;
   }
   @keyframes bravo {
      from {left:0px; }
      to {left:600px;}
   }
   @keyframes NEW_FRAME {
      from {left:550px; }
      to {left:0px;}
   }
</style>
<script>
   function nameChange(){
      document.getElementById("DIV1").style.animationName="NEW_FRAME";
      document.getElementById("Sample").innerHTML="The animation name is now NEW_FRAME";
   }
</script>
</head>
<body>
<div id="DIV1">SAMPLE TEXT</div>
<p>Click the below button to change the above animation fillmode property</p>
<button onclick="nameChange()">CHANGE NAME</button>
<p id="Sample"></p>
</body>
</html>

輸出

這將產生以下輸出。動畫從左向右移動 -

單擊更改名稱按鈕時,動畫從左向右移動 -

相關用法


注:本文由純淨天空篩選整理自AmitDiwan大神的英文原創作品 HTML DOM Style animationName Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。