Guest User

Untitled

a guest
Jun 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $('#menu UL LI A').css({backgroundPosition:'(0% 0%)'}).mouseover(function(){
  2. $(this).animate({backgroundPosition:'(50% 125%)'},{queue:false,duration:500});
  3. alert("mouseover");
  4. })
  5. .mouseout(function(){
  6. $(this).animate({backgroundPosition:'(0% 0%)'},{queue:false,duration:500});
  7. alert("mouseout");
  8. });
Add Comment
Please, Sign In to add comment