Jump to content
Search Community

Calling Timeline from a variable

studiogram test
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

Hi, 

 

I try to call timeLines depending on which button is clicked, but I get errors. I've set a basic example on codepen.

What I try to achieve, is depending on the button clicked, to restart a TimeLine.

On my project, I have a lot of button, and I want to call the timeLines dynamically, without creating a different event for each button, 

 

Does anyone have an idea how to solve this ?

 

Thanks in advance,

 

Olivier

 

See the Pen GRKoMgZ by alguna (@alguna) on CodePen

Link to comment
Share on other sites

Hey alguna and welcome to the forums,

 

One way to do that would be to create an object that maps the ID to the timeline like so:

 

const map = {
  "tl_A": tl_A,
  "tl_B": tl_B,
  "tl_C": tl_C
}

and in your click listener you use the map to fire the right timeline:

 

map[triggerId].restart();

See the Pen pozgWRK?editors=0010 by GreenSock (@GreenSock) on CodePen

  • Like 4
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...