Guest User

Untitled

a guest
Dec 11th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. var fader = function(el){
  2. el.live('mouseenter',function(){
  3. var passive = $(this).attr('data-passive');
  4. $(this).find("."+passive).stop().animate({
  5. opacity:0
  6. });
  7. });
  8. el.live('mouseleave',function(){
  9. var passive = $(this).attr('data-passive');
  10. $(this).find("."+passive).stop().animate({
  11. opacity:1
  12. });
  13. });
  14. }
Add Comment
Please, Sign In to add comment