我正在整理一个基于此的菜单:http: //buildinternet.com/2009/01/how-to-make-a-smooth-animated-menu-with-jquery/
它在我的本地机器上工作,但是当我把它放在 JSFiddle 中时,缓动不起作用。
不工作的代码是:
$(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'
});
});
});
http://jsfiddle.net/bdgriffiths/EyFPB/1/
我错过了什么?我添加了缓动插件,据我所知,JQuery 也在那里。
当然这是我错过的愚蠢的东西......