Jump to content
Search Community

Get all instances of TimelineMax (or any other object? :O)

katerlouis
Moderator Tag

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

JS isn't my biggest strength, so maybe this is trivial–

 

I need this in order to pause every timeline created.

Or to reset all of them.

 

Thanks!

Posted

I'd say it depends on how you have created them.

 

However if you want to control the tweens of a particular object (TimelineMax/Lite or TweenMax/Lite) you can use .getTweensof()

 

Or if you want to indiscriminately pause or reset (or whatever else) ALL Tweens/Timeline objects you can use .exportRoot().

  • Like 5
  • 3 years later...
Posted

For others who come across this thread, you can get all the tweens and timelines attached to the globalTimeline like so:

gsap.globalTimeline.getChildren()

So if you wanted to do something like jump to the end of their animations (i.e. skip all animation) you could do something like:

gsap.globalTimeline.getChildren().forEach(child => child.totalProgress(1).pause());

 

  • Like 3

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