animationPlayState 属性用于设置或获取动画状态,无论它是运行还是暂停。这在切换动画时很有用。
用法
以下是语法
设置 animationPlayState 属性 -
object.style.animationPlayState = "running|paused|initial|inherit"
值
以下是值 -
Sr.No | 值和描述 |
---|---|
1 | Running 它指定动画当前正在运行并且是默认值。 |
2 | Paused 用于指定动画暂停。 |
3 | Initial 用于将此属性设置为初始值。 |
4 | inherit 继承父属性值。 |
示例
让我们看一个 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>
输出
当盒子从上到下移动时,这将产生以下输出 -
单击更改状态 -
相关用法
- HTML DOM Style animationIterationCount属性用法及代码示例
- HTML DOM Style animationFillMode属性用法及代码示例
- HTML DOM Style animation属性用法及代码示例
- HTML DOM Style animationDuration属性用法及代码示例
- HTML DOM Style animationTimingFunction属性用法及代码示例
- HTML DOM Style animationDelay属性用法及代码示例
- HTML DOM Style animationName属性用法及代码示例
- HTML DOM Style animationDirection属性用法及代码示例
- HTML DOM Style alignSelf属性用法及代码示例
- HTML DOM Style alignContent属性用法及代码示例
- HTML DOM Style alignItems属性用法及代码示例
- HTML DOM Style overflowY属性用法及代码示例
- HTML DOM Style pageBreakAfter属性用法及代码示例
- HTML DOM Style transition属性用法及代码示例
- HTML DOM Style outlineOffset属性用法及代码示例
- HTML DOM Style maxWidth属性用法及代码示例
- HTML DOM Style textAlignLast属性用法及代码示例
- HTML DOM Style borderBottomWidth属性用法及代码示例
- HTML DOM Style width属性用法及代码示例
- HTML DOM Style margin属性用法及代码示例
注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Style animationPlayState Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。