要使动画播放后有一定的延迟时间,可以使用CSS或JavaScript来实现。以下是两种常见的方法:
CSS中的animation-delay
属性可以用来设置动画开始前的延迟时间。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Animation Delay</title>
<style>
.box {
width: 100px;
height: 100px;
background-color: red;
animation: move 2s linear infinite;
animation-delay: 3s; /* 延迟3秒开始动画 */
}
@keyframes move {
0% { transform: translateX(0); }
100% { transform: translateX(200px); }
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
animation-delay: 3s;
:这行代码设置了动画在开始前会延迟3秒。可以使用JavaScript来控制动画的开始时间。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript Animation Delay</title>
<style>
.box {
width: 100px;
height: 100px;
background-color: red;
position: relative;
}
.move {
animation: move 2s linear infinite;
}
@keyframes move {
0% { transform: translateX(0); }
100% { transform: translateX(200px); }
}
</style>
</head>
<body>
<div class="box" id="box"></div>
<script>
setTimeout(() => {
document.getElementById('box').classList.add('move');
}, 3000); // 延迟3秒开始动画
</script>
</body>
</html>
setTimeout(() => { ... }, 3000);
:这行代码设置了在3秒后执行回调函数,回调函数中给元素添加了move
类,从而触发动画。animation-delay
属性或setTimeout
的时间设置正确。通过以上方法,你可以轻松实现动画播放后的延迟效果。
领取专属 10元无门槛券
手把手带您无忧上云