2014-12-07 170 views
0

我正在通過GSAP文檔查找,無法找到一種方法將動畫恢復爲原始狀態,而無需經歷整個反轉週期。基本上我想補間一個元素,結束後,我希望它跳回到沒有動畫的原始狀態。如何做到這一點有什麼好的做法?恢復到原始狀態GSAP - TweenlineMax

回答

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)。

快樂補間!