Share Posted March 11, 2019 Hi guys! I am a beginner at JavaScript. I created codepen with hover animation. So, when I hover the blue square, the first animation begins. Then, when the first animation ends, the second animation begins. When the mouse leaves, the first animation reverse, but the callback function stills working. I need reverse for the animation inside the callback function when the mouse leaves. How can I do this? See the Pen oVWgjX by Female (@Female) on CodePen Link to post Share on other sites
Share Posted March 11, 2019 @Maryna, one way to handle that would be to define newTl in a scope accessible to all functions, kill() newTl on hover-out mouseleave, and build/rebuild the tween on each circleMove() call. See the Pen ZPXWXZ?editors=1111 by sgorneau (@sgorneau) on CodePen 2 1 Link to post Share on other sites
Author Share Posted March 11, 2019 Thank you so much! That's what I need. Link to post Share on other sites
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now