这是一款jquery设计鼠标感应经过导航菜单时翻动显示特效,网站常用的一种导航菜单特效,立体效果很强。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效,www.wuming.ren"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <title>jquery鼠标感应导航菜单翻动显示特效_武鸣人</title> <style> ul#nav_wuming_ren { margin: 15px 0 50px 0; padding: 0; list-style: none; float: left; font-size: 1.1em; } ul#nav_wuming_ren li { margin: 0; padding: 0; overflow: hidden; float: left; height: 40px; } ul#nav_wuming_ren a, ul#nav_wuming_ren span { padding: 10px 20px; float: left; text-decoration: none; color: #fff; background: url(/img/20240420_www_wuming_ren_19.gif) repeat-x; text-transform: uppercase; clear: both; width: 100%; height: 20px; line-height: 20px; } ul#nav_wuming_ren a{ color: #555; background-position: left bottom; } ul#nav_wuming_ren span { background-position: left top; } ul#nav_wuming_ren.v2 span { background: transparent url(/img/20240420_www_wuming_ren_19.gif) repeat-x left top; } ul#nav_wuming_ren.v2 a { background: transparent url(/img/20240420_www_wuming_ren_19.gif) repeat-x left bottom; color: #555; } </style> <script type="text/javascript" src="/img/jquery_wuming_ren.js"></script> </head> <script> $(document).ready(function() { $("#nav_wuming_ren li").prepend("<span></span>"); $("#nav_wuming_ren li").each(function() { var linkText = $(this).find("a").html(); $(this).find("span").show().html(linkText); //Add the text in the <span> tag });//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) $("#nav_wuming_ren li").hover(function() { //On hover... $(this).find("span").stop().animate({ marginTop: "-40" //Find the <span> tag and move it up 40 pixels }, 250); } , function() { //On hover out... $(this).find("span").stop().animate({ marginTop: "0" //Move the <span> back to its original state (0px) }, 250); }); });//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) </script> <body> <a href="https://www.wuming.ren">武鸣人</a>,各种信息资源免费发布,分享励志语录经典短句,减肥健身常识,各种js特效代码。网站很好记住,wuming.ren(武鸣拼音.ren域名后缀)<hr> <!--欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。--> <script type="text/javascript" src="https://www.wuming.ren/ad/tc.js"></script> <script type="text/javascript" src="https://www.wuming.ren/ad/a.js"></script> <span style="color:#FF0000">需要加载js文件,请刷新后看效果!</span> <br /> <ul id="nav_wuming_ren"> <li><a href="https://www.wuming.ren">武鸣一号</a></li> <li><a href="https://www.wuming.ren">武鸣二号</a></li> <li><a href="https://www.wuming.ren">武鸣三号</a></li> <li><a href="https://www.wuming.ren">武鸣四号</a></li> <li><a href="https://www.wuming.ren">武鸣五号</a></li> <li><a href="https://www.wuming.ren">武鸣六号</a></li> </ul> </body> </html>
本文来自武鸣人网站,转载请注明出处