Guest User

Untitled

a guest
Aug 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. jQuery dropdown menu animation
  2. <ul>
  3. <li>
  4. <a href="#">Parent link</a>
  5. <ul>
  6. <li><a href="#">Submenu link</a></li>
  7. </ul>
  8. </li>
  9. </ul>
  10.  
  11. $(function(){
  12. $('#nav>li').hover(function() {
  13. $(this).closest('li').find('>ul').css({
  14. 'opacity': 0,
  15. 'margin-top': 15
  16. }).show().animate({
  17. 'margin-top': 0,
  18. 'opacity': 1
  19. }, 300);
  20. }, function() {
  21. $(this).closest('li').find('>ul').fadeOut(200, function() {
  22. $(this).hide();
  23. });
  24. });
  25. });
Add Comment
Please, Sign In to add comment