jelmer Posted June 30, 2020 Posted June 30, 2020 Is it possible to play two different animations at the same time in a timeline, on scroll? If yes; how?
b1mind Posted June 30, 2020 Posted June 30, 2020 https://greensock.com/docs/v3/GSAP/Timeline I really recommend looking at the docs for better examples and to understand how much control you have in timelines. this is how I typically start my timelines if I want to base the animation on the start of the tl ( but you can name it anything) tl .add('start') .to(something, {}, 'start') .to(something2, {}, 'start') 3
jelmer Posted June 30, 2020 Author Posted June 30, 2020 1 minute ago, b1Mind said: https://greensock.com/docs/v3/GSAP/Timeline I really recommend looking at the docs for better examples and to understand how much control you have in timelines. tl .add('start') .to(something, {}, 'start') .to(something2, {}, 'start') gotem, thanks
ZachSaucier Posted June 30, 2020 Posted June 30, 2020 Another good resource is the position parameter video: 5
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