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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。