恢复到原始状态GSAP - TweenlineMax

时间:2014-12-07 12:23:06

标签: css-animations tween tweenmax gsap

我正在查看GSAP文档,并且无法找到一种方法将动画恢复到原始状态,而无需经历整个逆循环。基本上我想补间一个元素,在它结束后我希望它跳回到它没有动画的原始状态。对于如何做到这一点有什么好的做法吗?

1 个答案:

答案 0 :(得分:3)

当然,有很多方法:

timeline.seek(0).pause(); //jumps to the 0 position and then pauses
timeline.pause(0); //shortcut for the line above
timeline.progress(0).pause();
timeline.totalProgress(0).pause();
timeline.restart(0).pause();

(上面的任何一行都可以)

"时间表"上面是对TimelineMax实例的引用。 (你说" TweenlineMax"但我确定你的意思是TimelineMax)。

快乐的补间!