Jump to content
GreenSock

mallanaga

staggerTo

Moderator Tag
Go to solution Solved by Diaco,

Warning: Please note

This thread was started before GSAP 3 was released. Some information, especially the syntax, may be out of date for GSAP 3. Please see the GSAP 3 migration guide and release notes for more information about how to update the code to GSAP 3's syntax. 

Recommended Posts

TweenMax.staggerTo('.card', 1, { rotationY: '+=180', repeat: 1, yoyo: true }, 0.1);

So, I see how I can stagger with a specific tween, but what if i want to set the same value twice in the animation, before moving onto the next?

var tl = new TimelineLite()
    tl.to('.card', 0.4, { z: 100, rotationY: '+=180', ease: Back.easeOut })
      .to('.card', 0.1, { z: 0, ease: Back.easeInOut })

This flips a card, while also lifting it off the table a bit. I want the stagger to do this for each of card. Is there a way to do that?

Link to comment
Share on other sites

  • Solution

Hi mallanaga :)

 

try this : 

var cards = $(".card");

for (var i = 0; i < cards.length; i++) {
  tl.to(cards[i], 0.5 , { z: 100, rotationY: '+=180'},i*0.2)
    .to(cards[i], 0.3 , { z:0 })
};
  • 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.
×