animationDelay 属性用于指定动画序列的开始时间。我们可以将其设置为立即开始,在一段时间间隔后或中途开始。
用法
以下是语法 -
设置 animationDelay 属性 -
object.style.animationDelay = "time|initial|inherit"
值
以下可以是值 -
值 | 描述 |
---|---|
time | 用于提及动画开始前等待的时间(以秒或毫秒为单位)。时间的默认值为 0。 |
initial | 用于将此属性设置为初始值。 |
inherit | 继承父属性值。 |
示例
让我们看一下 animationDelay 属性的示例 -
<!DOCTYPE html>
<html>
<head>
<style>
#box {
width:50px;
height:50px;
border-radius:10%;
background:lightgreen;
position:relative;
animation:glide 5s;
animation-delay:1s;
transition:0.5s;
}
@keyframes glide {
from {left:0px;}
to {left:200px; background-color:lightblue;}
}
</style>
<script>
function delayChange(){
document.getElementById("box").style.animationDelay="5s";
document.getElementById("Sample").innerHTML="The animation will now start after a delay of 5 seconds";
}
</script>
</head>
<body>
<h1>animationDelay property example</h1>
<div id="box"></div>
<p>Change the above animation delay to 5s by clicking the below button</p>
<button onclick="delayChange()">CHANGE DELAY</button>
<p id="Sample"></p>
</body>
</html>
输出
这将产生以下输出 -
1 秒后,动画开始,我们在过渡期间得到以下输出 -
通过单击 CHANGE DELAY 按钮,动画将在 5 秒后开始 -
相关用法
- HTML DOM Style animationDuration属性用法及代码示例
- HTML DOM Style animationDirection属性用法及代码示例
- HTML DOM Style animationIterationCount属性用法及代码示例
- HTML DOM Style animationFillMode属性用法及代码示例
- HTML DOM Style animation属性用法及代码示例
- HTML DOM Style animationTimingFunction属性用法及代码示例
- HTML DOM Style animationName属性用法及代码示例
- HTML DOM Style animationPlayState属性用法及代码示例
- 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 animationDelay Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。