Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function () {
  2.  
  3.     $('.down-list').width($('.dropdown-menu').width()-2);
  4.  
  5.     $('.dropdown-menu').hover(
  6.       function () {
  7.         $('.menu-first', this).addClass('slide-down').css({'border-bottom-left-radius': '0', 'border-bottom-right-radius': '0'});
  8.         $('.down-list', this).slideDown(100).css('position', 'fixed');
  9.       },
  10.       function () {
  11.         obj = this;
  12.         $('.down-list', this).slideUp(150, function(){ $('.menu-first', obj).removeClass('slide-down').css({'border-bottom-left-radius': '4px', 'border-bottom-right-radius': '4px'}); });
  13.       }
  14.     );    
  15.    
  16.  
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement