我想獲得一個jQuery菜單工作,每隔一個項目盤旋。這裏是fiddle code!。你將如何看到結果。當我懸停一個項目時,所有都受到影響。我的錯誤在哪裏?jQuery菜單不能正常工作
下面是javascript代碼:
$(document).ready(function(){
//Remove outline from links
$("a").click(function(){
$(this).blur();
});
//When mouse rolls over
$("li").mouseover(function(){
$(this).stop().animate({height:'200px'},{queue:false, duration:600, easing: 'easeOutBounce'})
});
//When mouse is removed
$("li").mouseout(function(){
$(this).stop().animate({height:'140px'},{queue:false, duration:600, easing: 'easeOutBounce'})
});
});
如果剩下的還需要請大家看看fiddle code.