Share Posted January 5, 2016 Hi team, If I have a master timeline that contains 3 smaller timelines. Let's say if I want to change the start time of getPinTimeline so that it overlaps on the timeline of getRotateTimeline. How can I do that? var mtl = new TimelineMax(); mtl.add(getSpinTimeline()) .add(getRotateTimeline()) .add(getPinTimeline()); Cheers, Venn. Link to comment Share on other sites More sharing options...
Author Share Posted January 5, 2016 mtl.add(getSpinTimeline()) .add(getRotateTimeline(0)) .add(getPinTimeline(0)); I did a quick test by putting 0 in them so they all run concurrently but in vain? Link to comment Share on other sites More sharing options...
Share Posted January 5, 2016 Hi venn pls check this blog post : Understanding the Position Parameter Link to comment Share on other sites More sharing options...
Author Share Posted January 5, 2016 Thanks @Diaco Please call me dumb. My syntax is wrong. //add another timeline at "myLabel" tl.add(otherTimeline, "myLabel"); Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now