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


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