Style animationDuration 属性 详解
css3基础 2023-07-29 18:33:10小码哥的IT人生shichen
Style animationDuration 属性
定义和用法
animationDuration
属性定义动画完成一个周期所需的秒数或毫秒数。
实例
更改 <div> 元素的 animationDuration 属性:
document.getElementById("myDIV").style.animationDuration = "3s";
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: red;
position: relative;
animation: mymove 5s infinite;
}
@keyframes mymove {
from {left: 0px;}
to {left: 200px;}
}
</style>
</head>
<body>
<h1>HTML Style 对象</h1>
<h2>animationDuration 属性</h2>
<p>点击“试一试”按钮可以加快动画的时长。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
document.getElementById("myDIV").style.animationDuration = "1s";
}
</script>
<div id="myDIV"></div>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
返回 animationDuration 属性:
object.style.animationDuration
设置 animationDuration 属性:
object.style.animationDuration = "time|initial|inherit"
属性值
值 | 描述 |
---|---|
time | 规定动画完成所需的长度。默认值为 0,表示不会有动画。 |
initial | 将此属性设置为其默认值。请参阅 initial。 |
inherit | 从其父元素继承此属性。请参阅 inherit。 |
技术细节
默认值: | 0 |
---|---|
返回值: | 字符串,表示元素的 animation-duration 属性。 |
CSS 版本: | CSS3 |
浏览器支持
animationDuration
是 CSS3 (1999) 特性。
所有浏览器都完全支持它:
Chrome | Edge | Firefox | Safari | Opera | IE |
---|---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera | IE |
支持 | 支持 | 支持 | 支持 | 支持 | 11 |
相关页面
CSS 参考手册:animation-duration 属性