Jump to content
Search Community

How to add tweens and functions to a timelineMax at the same time?

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

Hi,

What is the right code to add tweens and functions to a timelineMax at the same time?

Thanks!

Shaun Gorneau
Posted

If I'm understanding what you're asking, it's as simple as

 

var tl = new TimelineMax();

tl.add( function(){ console.log('This function is running at the same time as the tween below is beginning'); } )
  .to( '#someElement' , 1 , { x: 100 } );

 

  • Like 4
Posted

in addition to what Shaun advised, if you need to add them at a specific time, use the position parameter

var tl = new TimelineMax();

tl.to("#someElement", 1, {opacity:1})



//call function and start tween at time of 2 seconds

tl.add( function(){ console.log('This function is running at the same time as the tween below is beginning'); }, 2 )
  .to( '#someElement' , 1 , { x: 100 }, 2 );

 

 

also if you are calling your function with call(), that also has a position parameter: https://greensock.com/position-parameter

 

The position parameter can be an absolute time, relative time, or label.

  • Like 4

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