Share Posted January 10, 2015 Hover one element animate another. It feels like this should be fairly straight forward but I can't seem to get it to work. Codepen : Thanks See the Pen BypVaQ by LegendT (@LegendT) on CodePen Link to comment Share on other sites More sharing options...
Share Posted January 10, 2015 Try this: var $elements = $('div'); $elements.on("mouseover", function() { TweenMax.to($elements.not($(this)), .3, {opacity:0}); }).on("mouseout", function() { TweenMax.to($elements, .3, {opacity:1}); }); 1 Link to comment Share on other sites More sharing options...
Author Share Posted January 10, 2015 Thanks for the reply. That would work in this situation but I need to be able to target specific elements. Link to comment Share on other sites More sharing options...
Share Posted January 10, 2015 This issue may not be related to greensock directly (more of a jQuery issue). 1 Link to comment Share on other sites More sharing options...
Share Posted January 10, 2015 Yea the only issue here seems to be with the jQuery/mouse events. You were right, it's quite simple to target a different element than the one you are hovering. var t = TweenMax.to('#elem1', .3, { opacity:0, paused:true }); $("#elem2").on("mouseenter", function() { t.play(); }).on("mouseleave", function() { t.reverse(); }); 1 Link to comment Share on other sites More sharing options...
Author Share Posted January 10, 2015 Thank you very much 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