How to create a TweenLite but not start it immediately -
i can create tweenlite this:
var tl = tweenlite.from('.box',1,{opacity:0});
at point automatically plays.
how can not auto-play, instead "manually" start @ later time with:
tl.play();
many greensock forum moderator came answer:
// put "paused:true" when creating tween var tl = tweenlite.from('.box',1,{ opacity:0, paused:true });
Comments
Post a Comment