Jump to content
Search Community

capture element(s) being tweened in onComplete

BradLee test
Moderator Tag

Go to solution Solved by OSUblake,

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

Is there a way to capture the element(s) being tweened within the onComplete param?

 

 

For example, I'm trying to replace the code: 'element I'm tweening here' with the actual element that is being tweened.

let div = document.querySelector(`div`);
TweenLite.to(div, 2, {x:100, onComplete: () => console.log(`element I'm tweening here`)});

See the Pen qZgxqo?editors=0010 by BradLee (@BradLee) on CodePen

Link to comment
Share on other sites

  • Solution

Just a little FYI about callback scope. Arrow functions aren't scoped, but if you use a regular function you can just use 'this' to reference the tween.

TweenLite.to(div, 2, { x: 100, onComplete: function() { console.log(this.target); }})
  • 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.
×
×
  • Create New...