Jump to content
Search Community

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

Posted
hi,

I made ​​an animation with the fingers of the characters , as you can see from my codepen .

I used TweenMax.staggerFrom so you can move each finger with a small delay .

 

but I have a problem, how can I say that the animation should begin from the beginning all together ?

Now the animation starts from an hand per time , but I would to say that all the hands they need to start the animation of the fingers at the same time , without any delay.

 

maybe it is better don't use staggerFrom for my scope?

 

any help, suggestion or advice?

many thanks

 

See the Pen OXYJxj by mp1985 (@mp1985) on CodePen.

Posted

Thanks for the demo, 

Your jQuery selector was selecting 16 different targets that were being animated in sequence.

 

If you just use an Array like: 

 

var fingers = [".finger-one", ".finger-two", ".finger-three", ".finger-four"];

 

GSAP will select and animate all .finger-one then all .finger-two etc.

 

I think it will give you what you want

 

http://codepen.io/GreenSock/pen/dXEPBK?editors=0010

  • Like 2

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...