Jump to content
Search Community

multiple staggers on one tween

traile test
Moderator Tag

Recommended Posts

Hello, is there a way to have multiple staggers on one tween? for example, I have a tween that animates both position and opacity properties, but I want different stagger values for both properties, how could I accomplish this? something like in the image attached.

Screenshot 2022-10-12 234732.png

Link to comment
Share on other sites

Hi,

 

Even though with advanced staggers you can do a lot of stuff, creating different stagger times is not one of those, as far as I know. But the solution is not that complex though, just create another instance that starts at the same time as the other using the position parameter:

tl
  .from(elements, { opacity: 0, stagger: 0.005 })
  .from(elements, { y: 40, stagger: 0.015 }, "<");

Based on the code snippet you posted, that should work as expected.

 

If you keep having issues, please post a simple minimal demo in order to see what could be the problem.

 

Happy Tweening!

  • Like 1
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...