메뉴 슬라이드효과

2015. 3. 24. 16:04IT/Jquery Plugin/Tip

$('#top_menu_m').mouseover(function(){
$('#top_menu_m2').stop().animate({height:"180px"},200);
});

$('#top_menu_m').mouseout(function(){
$('#top_menu_m2').stop().animate({height:"0px"},200);
});