animated-menu.js

来自「javascript动态特效」· JavaScript 代码 · 共 20 行

JS
20
字号
$(document).ready(function(){		//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/		//Remove outline from links	$("a").click(function(){		$(this).blur();	});		//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'})	});	});

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?