delay
优质
小牛编辑
134浏览
2023-12-01
delay: Number
时间轴动画开始之前的延迟秒数(或帧数)。restart()无视delay。
new TimelineMax({delay:3});
delay适用于TimelineMaxTimelineLitedelay的参数
delay 示例
延迟2秒
.box {
width:50px;
height:50px;
border-radius:6px;
margin-top:4px;
}
.green{
background-color:#6fb936;
}
#controls {
position:absolute;
width: 100%;
bottom: 20px;
text-align: center;
}
button {
padding:10px;
margin:0 5px;
}
var tm = new TimelineMax({delay:2});
tm.to(".box", 3, {x:500})
restartBtn = document.getElementById("restart");
restartBtn.onclick = function(){
tm.restart();
}