hirokonaBlog

ググる→忘れそう→即時メモ 京都のWebデザイナーの備忘録

TweenMax,TimelineLiteメモ

[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/


投稿日

カテゴリー:

投稿者:

タグ:

コメント

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください