[javascript]
//全ての動きを削除
TweenMax.killTweensOf($(“#bigDVD”));
//timelineLiteの合計時間を指定
var tt = myAnimation.totalTime(); //gets total time
myAnimation.totalTime(2); //sets total time, jumping to new value just like seek().
[/javascript]
全ての動きを削除して初期状態に戻す(TweenMax)
Reset and and stop All Tweens (TweenMax and TimelineMax) – GSAP – GreenSock
http://greensock.com/forums/topic/8320-reset-and-and-stop-all-tweens-tweenmax-and-timelinemax/
[javascript]
TweenMax.killTweensOf($(‘#image’));
TweenMax.set($(‘#image’), {clearProps:”all”});
[/javascript]
全ての動きを削除して初期状態に戻す(TimelineMax・TimelineLite)
https://greensock.com/docs/#/HTML5/GSAP/TimelineLite/kill/
[javascript]
timeline.stop(); //止める
timeline.time(0); //タイムライン開始時の状態に戻す
timeline.kill(); //タイムラインを削除する
[/javascript]
Ease params
GreenSock | Ease Visualizer
http://greensock.com/ease-visualizer
TimelineLite Docs
GreenSock | TimelineLite
http://greensock.com/timelinelite
GreenSock | Docs – HTML5 GSAP TimelineLite totalTime
http://greensock.com/docs/#/HTML5/GSAP/TimelineLite/totalTime/
コメントを残す