Jump to content
Search Community

Visual attributes are still applied to element even though timeline is paused?

venn test
Moderator Tag

Go to solution Solved by GreenSock,

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

revealTL = new TimelineMax({paused: true});

revealTL.from(element, 0.2, {opacity: 0, y: "+=64"});

Hi there, 

 

I created a timeline that is paused initially.

However the visual attributes of opacity:0 and y position is already applied to my element before the timeline starts.

 

 

How do I remove that pre-stagging transformation and only have it when I play my timeline?

 

Cheers,

Venn.

Link to comment
Share on other sites

  • Solution

By default, from() tweens always render their initial values immediately because that's typically the desired behavior. But you can set immediateRender:false on that tween if you want to override that behavior. 

revealTL.from(... {opacity:0, y:"+=64", immediateRender:false});

Does that help? 

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