js收缩菜单

效果图:

css代码:

 1 ul{
 2     padding:0;
 3     font-family:Microsoft Yahei;
 4 }
 5 ul li{
 6     list-style-type:none;
 7 }
 8 .new-menu{
 9     margin-top: 0px;
10     margin-bottom:0px;
11 }
12 .new-menu>li{
13     margin-bottom:2px;
14 }
15 .group-title{
16     height:35px;
17     line-height:35px;
18     width:100%;
19     font-size:14px;
20     padding-left:10px;
21     background:#F3F5F9;
22     color:#333;
23     cursor:pointer;
24 }
25 .title-minus{
26     background:url("../../images/leftmenu/minus.png") no-repeat!important;
27 }
28 .title-plus{
29     background:url("../../images/leftmenu/plus.png") no-repeat!important;
30 }
31 .title-name{
32     margin-left:10px;
33 }
34 .title-mark{
35     float:right;
36     height:19px;
37     margin-top:7px;
38     line-height:35px;
39     margin-right:10px;
40     color:#D1D3DA;
41     width: 21px;
42 }
43 .collapse>li{
44     color:#666;
45     height:35px;
46     line-height:35px;
47     font-family:Microsoft Yahei;
48     font-size:14px;
49     cursor:pointer;
50     text-align:left;
51     border-bottom:solid 1px #f8f8f8;
52     padding-left:35px;
53 }
54 .collapse>li:hover{
55     color:#3a7dd2;
56 }
57 .collapse-active{
58     background:#3a7dd2;
59     color:#fff !important;
60 }

js代码:

 1 $(function(){
 2     leftMenu.hideEvent();
 3     leftMenu.bindEvent();
 4 });
 5
 6 /**
 7  * 左边目录栏操作
 8  */
 9 var leftMenu={
10         /**
11          * 初始化隐藏
12          */
13         hideEvent : function(){
14             $(".collapse").css("display","block");
15             $("#first").nextAll().find("ul").css("display","none");
16         },
17         bindEvent : function(){
18             /**
19              * 主菜单的点击事件
20              */
21             $(".group-title").on("click", function() {
22                 /*$(this).parent().find("ul").slideToggle(300,function(){
23                     if($(this).css("display") == "none"){
24                         $(this).prev().find("#mark").attr("class","fa fa-plus title-mark");
25                     }else{
26                         $(this).prev().find("#mark").attr("class","fa fa-minus title-mark");
27                     }
28                 });*/
29                 if($(this).parent().find("ul").css("display") == "none"){
30                     $(this).parent().find("ul").slideDown("fast");
31                     $(this).find("#mark").attr("class","title-minus title-mark");
32                     $(this).parent().siblings().find("ul").slideUp("fast");
33                     $(this).parent().siblings().find("#mark").attr("class","title-plus title-mark");
34                 }else{
35                     $(this).parent().find("ul").slideUp("fast");
36                     $(this).parent().find("#mark").attr("class","title-plus title-mark");
37                 }
38             });
39
40             /**
41              * 子菜单的点击事件
42              */
43             $(".collapse>li").on("click", function() {
44                 $(this).addClass("collapse-active");
45                 $(".collapse>li").not(this).removeClass("collapse-active");
46                 $($("iframe")[0]).attr("src", $(this).attr("data-href"));
47             });
48         }
49 }

使用范例:

 1 <ul class="new-menu">
 2  2     <li class="accordion-group" id="first">
 3  3         <div class="group-title"><i class="fa fa-database"></i><b class="title-name">一级菜单A</b><span id="mark" class="title-minus title-mark"></span></div>
 4  4             <ul class="collapse">
 5  5                 <li class="collapse-active" data-href="">
 6  6                     二级菜单A
 7  7                 </li>
 8  8                 <li data-href="">
 9  9                     二级菜单B
10 10                 </li>
11 11             </ul>
12 12     </li>
13 13     <li class="accordion-group">
14 14         <div class="group-title"><i class="fa fa-cog"></i><b class="title-name">一级菜单B</b><span id="mark" class="title-plus title-mark"></span></div>
15 15             <ul class="collapse">
16 16                 <li data-href="">
17 17                     二级菜单C
18 18                 </li>
19 19                 <li data-href="">
20 20                     二级菜单D
21 21                 </li>
22 22
23 23             </ul>
24 24     </li>
25 25 </ul>

所需图标:

时间: 2024-10-14 04:45:22

js收缩菜单的相关文章

jQuery弹性展开收缩菜单插件gooey.js

分享一款基于jQuery弹性展开收缩菜单插件gooey.js.这是一款基于gooey.js插件实现的弹性菜单特效代码.效果图如下: 在线预览   源码下载 实现的代码. html代码: <header class="plugin-demo-header"> <h1>Gooey Menu</h1> <nav id="gooey-upper"> <input type="checkbox" cla

JS实战 &#183; &#160;收缩菜单表单布局

获取节点的两种方式: 1.通过event对象的srcElement属性: 2.通过事件源对象用this传入. 代码如下: <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>收缩菜单 · 表单布局</title> <script type="text/javascrip

JS树形菜单

超全的JS树形菜单源代码共享(有实例图) 树形菜单是很常用的效果,常用在管理软件当中,但是一套树形菜单已经不能满足需求,所以如果能有一套比较全面的树形菜单JS特效代码,将会非常方便,下面懒人萱将超全的JS树形菜单共享出来,相信你一定用得上. 一共包括八种,下面就一一介绍: 1.不同表现方式的JS树形菜单(如图所示) 2.复选框式的JS树形菜单(如图所示)左图为只可以选择单节点,右图为在选择子节点的同时选择父节点 3.可以重新排列节点并且具有拖放功能的js树形菜单(如图所示) 4.带有提示框的js

顶 兼容各种浏览器js折叠菜单

<!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-Typ

JS下滑菜单,向下滑出二级导航

<!DOCTYPE html><html><head><title>石家庄渣浆泵</title><style type="text/css">ul#sidemenu, ul#sidemenu ul{list-style-type: none;margin: 0;padding: 0;width: 185px;}ul#sidemenu a{display: block;text-decoration: none;}u

适合移动手机使用的js环形菜单特效插件

blooming-menu是一款适合在移动手机上使用的js环形菜单插件.该环形菜单提供了众多的參数,通过结合CSS3动画制作出效果很炫酷的圆形菜单展开和隐藏动画效果. 以下是这个圆形菜单菜价的可用參数: opts.itemsNum:类型:Number,该參数为必填參数. 该參数是菜单项的数量. opts.startAngle:类型:Number.默认值90.菜单的開始角度. opts.endAngle:类型:Number.默认值0.菜单的结束角度. opts.radius:类型:Number.默

js简单菜单

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServ

收缩菜单 css变样

// 收缩菜单 $("#leftMenu li h3").click(function(){ $v = $(this).next('.ajax').css('display'); if($v =='none'){ $(this).addClass('nav'); $(this).next('.ajax').css('display','block') }else{ $(this).removeClass('nav'); $(this).next('.ajax').css('displa

富有弹性碰撞缓冲的竖向JS导航菜单

<!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-