Share Posted August 6, 2013 How would you clear all CSS properties that were applied to an animation element by TweenMax? var tween = TweenMax.to($image, 5, {css:{ scale:1.5 }, ease: Linear.easeInOut, onComplete: function(){ tween.invalidate().progress(0); } }); I basically want to reset or clear all CSS properties that TweenMax adds to the inline style tag. So i can get the element back to its original state before it was animated by TweenMax. I was testing with tween.invalidate() .. but I was unsure if this was correct? Thank you for any help! Link to comment Share on other sites More sharing options...
Share Posted August 7, 2013 Hi Invalidate will clear the tween instance vars, use clearProps for that. Look at the following link: http://forums.greensock.com/topic/8091-reset-inline-style-value-when-returned-to-default/ Hope this helps Cheers Rodrigo 1 Link to comment Share on other sites More sharing options...
Author Share Posted August 7, 2013 Awesome, thanks for the quick answer! Do you know if there is a way to call clearProps without having to wait until the tween completes? Thanks again for the help! Link to comment Share on other sites More sharing options...
Share Posted August 7, 2013 Sure. TweenLite.set(yourElement, {clearProps:"all"}); Link to comment Share on other sites More sharing options...
Author Share Posted August 7, 2013 Awesome.. thanks Jack... Worked like a charm! Link to comment Share on other sites More sharing options...
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