//瀵艰埅 $(function() { var $obj = $('.menu ul'); $obj.find('li').on('mouseenter', function() { $(this).addclass("intro"); }); $obj.find('li').on('mouseleave', function() { $(this).removeclass("intro"); }) //瀵艰埅灞曞紑 $('#menu_1').on('mouseenter', function() { $('#menu_hover_bg').stop().animate({ height: '330px' }, 10); $('#menu_1 .sub_menu').stop().animate({ height: '330px' }, 20); }) $('#menu_1').on('mouseleave', function() { $('#menu_hover_bg').stop().animate({ height: '0px' }, 40); $('#menu_1 .sub_menu').stop().animate({ height: '0px' }, 40); }) $('#menu_2').on('mouseenter', function() { $('#menu_hover_bg').stop().animate({ height: '100px' }, 20); $('#menu_2 .sub_menu').stop().animate({ height: '100px' }, 20); }) $('#menu_2').on('mouseleave', function() { $('#menu_hover_bg').stop().animate({ height: '0px' }, 20); $('#menu_2 .sub_menu').stop().animate({ height: '0px' }, 20); }) $('#menu_3').on('mouseenter', function() { $('#menu_hover_bg').stop().animate({ height: '100px' }, 100); $('#menu_3 .sub_menu').stop().animate({ height: '100px' }, 100); }) $('#menu_3').on('mouseleave', function() { $('#menu_hover_bg').stop().animate({ height: '0' }, 60); $('#menu_3 .sub_menu').stop().animate({ height: '0' }, 50); }) $('#menu_4').on('mouseenter', function() { $('#menu_hover_bg').stop().animate({ height: '100px' }, 100); $('#menu_4 .sub_menu').stop().animate({ height: '100px' }, 100); }) $('#menu_4').on('mouseleave', function() { $('#menu_hover_bg').stop().animate({ height: '0' }, 60); $('#menu_4 .sub_menu').stop().animate({ height: '0' }, 50); }) $('#menu_5').on('mouseenter', function() { $('#menu_hover_bg').stop().animate({ height: '100px' }, 100); $('#menu_5 .sub_menu').stop().animate({ height: '100px' }, 100); }) $('#menu_5').on('mouseleave', function() { $('#menu_hover_bg').stop().animate({ height: '0' }, 60); $('#menu_5 .sub_menu').stop().animate({ height: '0' }, 50); }) //鏈嶅姟鍒嗙被閫夐」鍗? $('#menu_3 .category li').mouseover(function() { var i = $(this).index(); $(this).addclass('active').siblings().removeclass('active'); $('#menu_3 .content .cont_list').eq(i).show().siblings().hide(); }); });