Guest User

Untitled

a guest
May 25th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $(function() {
  2. $("li").hover(function () {
  3. // animate opacity to full
  4. $(this).children("ul").stop().animate({ opacity: 1 }, 200);
  5. },
  6. // on mouse out
  7. function () {
  8. // animate opacity to nill
  9. $(this).children(".color").stop().animate({ opacity: 0 }, 200);
  10.  
  11. });
  12. });
Add Comment
Please, Sign In to add comment