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


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


animationPlayState 屬性用於設置或獲取動畫狀態,無論它是運行還是暫停。這在切換動畫時很有用。

用法

以下是語法

設置 animationPlayState 屬性 -

object.style.animationPlayState = "running|paused|initial|inherit"

以下是值 -

Sr.No值和描述
1Running
它指定動畫當前正在運行並且是默認值。
2Paused
用於指定動畫暫停。
3Initial
用於將此屬性設置為初始值。
4inherit
繼承父屬性值。

示例

讓我們看一個 animationPlayState 屬性的例子 -

<!DOCTYPE html>
<html>
<head>
<style>
   div {
      width:70px;
      height:30px;
      border:3px solid brown;
      box-shadow:0 20px 0 -3px orchid;
      z-index:-1;
      position:relative;
      animation:move 5s infinite;
      animation-play-state:play;
   }
   @keyframes move {
      from {top:0px; }
      to {top:400px;}
   }
</style>
<script>
   function stateToggle(){
      document.getElementById("DIV1").style.animationPlayState="paused";
      document.getElementById("Sample").innerHTML="The animation is now paused";
   }
</script>
</head>
<body>
<div id="DIV1"></div>
<p>Click the below button to toggle the above animation state</p>
<button onclick="stateToggle()">CHANGE STATE</button>
<p id="Sample"></p>
</body>
</html>

輸出

當盒子從上到下移動時,這將產生以下輸出 -

單擊更改狀態 -

相關用法


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