⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 animated-menu.js

📁 javascript动态特效
💻 JS
字号:
$(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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -