Style animationPlayState 属性 详解
css3基础 2023-07-30 01:08:01小码哥的IT人生shichen
Style animationPlayState 属性
定义和用法
animationPlayState
属性规定动画是正在运行还是暂停。
注释:请使用此属性在循环中间暂停动画。
另请参阅:
CSS 参考手册:animation-play-state 属性
实例
暂停动画:
document.getElementById("myDIV").style.animationPlayState = "paused";
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
position: relative;
animation: mymove 2s infinite;
animation-play-state: paused;
}
@keyframes mymove {
from {left: 0px;}
to {left: 200px;}
}
</style>
</head>
<body>
<h1>HTML Style 对象</h1>
<h2>animationPlayState 属性</h2>
<p>点击按钮可播放/暂停动画:</p>
<button onclick="myPlayFunction()">播放</button>
<button onclick="myPauseFunction()">暂停</button>
<script>
function myPlayFunction() {
document.getElementById("myDIV").style.animationPlayState = "running";
}
function myPauseFunction() {
document.getElementById("myDIV").style.animationPlayState = "paused";
}
</script>
<div id="myDIV"></div>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
返回 animationPlayState 属性:
object.style.animationPlayState
设置 animationPlayState 属性:
object.style.animationPlayState = "running|paused|initial|inherit"
属性值
值 | 描述 |
---|---|
running | 默认值。规定动画正在运行。 |
paused | 规定动画暂停。 |
initial | 将此属性设置为其默认值。请参阅 initial。 |
inherit | 从其父元素继承此属性。请参阅 inherit。 |
技术细节
默认值: | running |
---|---|
返回值: | 字符串,表示元素的 animation-play-state 属性。 |
CSS 版本: | CSS3 |
浏览器支持
animationPlayState
是 CSS3 (1999) 特性。
所有浏览器都完全支持它:
Chrome | Edge | Firefox | Safari | Opera | IE |
---|---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera | IE |
支持 | 支持 | 支持 | 支持 | 支持 | 11 |