.recent()
优质
小牛编辑
130浏览
2023-12-01
.recent( ) : Animation
返回最近添加的子动画/时间轴/回调函数,无论其在时间轴中的位置如何。
var tl = new TimelineLite();
tl.to('.green', 99, {x:100, repeat:5})
.to('.grey', 1, {y:200}, 0.5)
.to('.orange', 1, {scaleX:2}, tl.recent().endTime() + 3);//此recent()得到的是最新添加的第二个动画
.recent()适用于TimelineMaxTimelineLite
.recent()的参数
.recent() 示例
.box {
width:50px;
height:50px;
position:relative;
border-radius:6px;
margin-top:4px;
}
.green{
background-color:#6fb936;
}
.orange {
background-color:#f38630;
}
.grey {
background-color:#989898;
}
var tl = new TimelineLite();
tl.to('.green', 9, {x:100, repeat:5})
.to('.grey', 1, {x:200}, 0.5)
.to('.orange', 1, {x:400}, tl.recent().endTime() + 3);//tl.recent()得到的是最新添加的第二个动画