位于页面左上角的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> /** 清除内外边距 **/ body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */ dl, dt, dd, ul, ol, li, /* list elements 列表元素 */ pre, /* text formatting elements 文本格式元素 */ form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */ th, td /* table elements 表格元素 */ { margin: 0; padding: 0; } body,button, input, select, textarea { font: 12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif; } h1, h2, h3, h4, h5, h6 { font-size: 100%; } address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */ code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */ small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 */ ul, ol { list-style: none; } /** 重置文本格式元素 **/ a { text-decoration: none; } a:hover { text-decoration: underline; } sup { vertical-align: text-top; } /* 重置,减少对行高的影响 */ sub { vertical-align: text-bottom; } /** 重置表单元素 **/ legend { color: #000; } /* for ie6 */ fieldset, img { border: 0; } /* img 搭车:让链接里的 img 无边框 */ button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大小 */ /* 注:optgroup 无法扶正 */ /** 重置表格元素 **/ table { border-collapse: collapse; border-spacing: 0; } </style> <style type="text/css"> #wuming_ren{width:300px;overflow:hidden} #wuming_ren dt{background:#ccc;color:#fff;cursor:pointer} #wuming_ren dd{background:#f4f4f4;color:#fff;;display:none} #wuming_ren dt.hover{background:green} </style> <script type="text/javascript" src="/img/jquery_wuming_ren.js" ></script> <script type="text/javascript"> $(function(){ $("dl").click(function(){ $(this).children('dt').addClass('hover').end().children("dd").show(); $(this).siblings().children('dt').removeClass("hover").end().end().siblings().children("dd").hide(); }); }); </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> 需要加载js文件,请刷新页面后看效果! <div id="wuming_ren"> <dl> <dt>武鸣人一号菜单</dt> <dd><a href="https://www.wuming.ren">武鸣人1</a>一号菜单列表</dd> <dd><a href="https://www.wuming.ren">武鸣人2</a>二号菜单列表</dd> <dd><a href="https://www.wuming.ren">武鸣人3</a>三号菜单列表</dd> <dd><a href="https://www.wuming.ren">武鸣人4</a>四号菜单列表</dd> </dl> <dl> <dt>武鸣人二号菜单</dt> <dd><a href="https://www.wuming.ren">武鸣人1</a>一号菜单列表</dd> <dd><a href="https://www.wuming.ren">武鸣人2</a>二号菜单列表</dd> <dd><a href="https://www.wuming.ren">武鸣人3</a>三号菜单列表</dd> <dd><a href="https://www.wuming.ren">武鸣人4</a>四号菜单列表</dd> </dl> <dl> <dt>武鸣人三号菜单</dt> <dd><a href="https://www.wuming.ren">武鸣人1</a>一号菜单列表</dd> <dd><a href="https://www.wuming.ren">武鸣人2</a>二号菜单列表</dd> </dl> </div> </body> </html>
本文来自武鸣人网站,转载请注明出处