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


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


animationIterationCount 属性用于设置或获取动画播放的次数。

用法

以下是语法 -

设置 animationIterationCount 属性 -

object.style.animationIterationCount = "number|infinite|initial|inherit"

以下是值 -

Sr.No值和描述
1number
指示动画应播放次数的数值。默认设置为 1。
2infinite
这使得动画无限播放。
3initial
用于将此属性设置为初始值。
4inherit
继承父属性值。

示例

让我们看一个 animationIterationCount 属性的例子 -

<!DOCTYPE html>
<html>
<head>
<style>
   p {
      color:black;
      animation:shrink 3s;
      animation-timing-function:ease;
      animation-iteration-count:1;
   }
   @keyframes shrink {
      0% {
         color:white;
         letter-spacing:1.8em;
      }
      100% {
         color:magenta;
         letter-spacing:0.01em;
      }
   }
</style>
<script>
   function IncreaseIteration(){
      document.getElementById("PARA1").style.animationIterationCount=5;
      document.getElementById("Sample").innerHTML="The animation Iteration count is now 5";
   }
</script>
</head>
<body>
<p id="PARA1">Tellus elementum sagittis vitae et. Ac orci phasellus egestas tellus rutrum tellus pellentesque.</p>
<p>Click the below button to change how many times the above animation will run</p>
<button onclick="IncreaseIteration()">INCREASE COUNT</button>
<p id="Sample"></p>
</body>
</html>

输出

这将产生以下输出 -

单击坐标按钮并单击 “Know your location” 弹出窗口上的允许 -

相关用法


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