Jump to content
GreenSock

OxXxigen

get current tween value

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

how can i get current tween values

TweenMax.to(div, 2, {
  css: {
    top: 200,
  },
  onUpdate(self) {
    // get current top value
    console.log(self.vars.css.top);
  },
  onUpdateParams: ["{self}"],
});

 

Link to comment
Share on other sites

I'd recommend using y and then get the data from the gsTransform object, but if you want to use top, getBoundingClientRect() would be my choice.

 

See the Pen oRjwoG by PointC (@PointC) on CodePen

  • Like 2
Link to comment
Share on other sites

i need to get different values from different tweens and getBoundingClientRect cause browser reflow, don't think it's good idea do this.

maybe tm store somewhere values that set ?

Link to comment
Share on other sites

As I said, I wouldn't animate 'top'. I'd use 'y' and then all the info you need is in the transform object.

 

See the Pen mYepGd by PointC (@PointC) on CodePen

 

As for your original code, you'll want this instead:

this.target[0].style.top

 

If you have other ideas, feel free to implement them. If you have GSAP related questions, we're happy to help.

  • Like 2
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.
×