当用户的鼠标经过导航菜单时,在右边弹出一个说明图层,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+css实现导航侧边弹出图层效果_武鸣人</title> <style type="text/css"> html, body, ul, li { margin: 0; padding: 0; border: 0; outline: 0; vertical-align: baseline; font-family: "Verdana","lucida sans",Sans-serif; font-size: 12px; } html, body { min-height: 100%; color: #FFFFFF; background-repeat: repeat-x; background-position: top; background-color: #161f2a; } ul.nav_wuming { width: 200px; float: left; margin: 0; padding: 0; } ul.nav_wuming li { position: relative; float: left; margin: 0; padding: 0; display: inline; } ul.nav_wuming li a { width: 165px; border-top: 1px solid #3373a9; border-bottom: 1px solid #003867; padding: 10px 10px 10px 25px; display: block; color: #fff; text-decoration: none; background: #005094 url(/img/20240419_www_wuming_ren_2.gif) no-repeat 5px 10px; position: relative; z-index: 2; } ul.nav_wuming li a:hover { background-color: #2d353f; } ul.nav_wuming li div { display: none; position: absolute; top: 2px; left: 0; width: 225px; background: url(/img/20240419_www_wuming_ren_3.gif) no-repeat right top; } ul.nav_wuming li div p { margin: 7px 0; line-height: 1.3em; padding: 0 5px 10px 30px; color: #444; background: url(/img/20240419_www_wuming_ren_4.gif) no-repeat right bottom; } </style> <script language="javascript" src="/img/jquery_wuming_ren.js"></script> <script language="javascript"> $(document).ready(function() { //武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) $("ul.nav_wuming li").hover(function() { $(this).find("div").stop() .animate({ left: "210", opacity: 1 }, "fast") .css("display", "block") }, function() { $(this).find("div").stop() .animate({ left: "0", opacity: 0 }, "fast") }); }); </script> </head> <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> <ul class="nav_wuming"> <li> <a href="https://www.wuming.ren">武鸣人首页</a> <div><p>武鸣人,各种信息免费发布,资源共享合作共赢!</p></div> </li> <li> <a href="https://www.wuming.ren">武鸣人一号</a> <div><p>武鸣人,各种信息免费发布,资源共享合作共赢!</p></div> </li> <li> <a href="https://www.wuming.ren">武鸣人二号</a> <div><p>武鸣人,各种信息免费发布,资源共享合作共赢!</p></div> </li> <li> <a href="https://www.wuming.ren">武鸣人三号</a> <div><p>武鸣人,各种信息免费发布,资源共享合作共赢!</p></div> </li> <li> <a href="https://www.wuming.ren">武鸣人四号</a> <div><p>武鸣人,各种信息免费发布,资源共享合作共赢!</p></div> </li> <li> <a href="https://www.wuming.ren">武鸣人五号</a> <div><p>武鸣人,各种信息免费发布,资源共享合作共赢!</p></div> </li> </ul> </body> </html>
本文来自武鸣人网站,转载请注明出处