Jquery Slider教程错误

时间:2013-06-10 12:51:09

标签: jquery menu slider animated

我一直使用the tutorial at this link制作动画菜单。但是它只会显示两个项目。 我已经做过实验,这就是问题所在。

$(document).ready(function(){  

//When mouse rolls over  
$("li").mouseover(function(){  
    $(this).stop().animate({height:'150px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
});  

//When mouse is removed  
$("li").mouseout(function(){  
    $(this).stop().animate({height:'50px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
});  

});

0 个答案:

没有答案