博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
基于bootstrap的后台二级垂直菜单[转]
阅读量:6272 次
发布时间:2019-06-22

本文共 2524 字,大约阅读时间需要 8 分钟。

最近做一个后台的管理项目,用到了Twitter推出的bootstrap前端开发工具包,是一个基于css3/html5的框架。

花周末时间,写了一个非常简单后台的菜单。本着开源的精神,现在把它分享出来(呵呵,前端的老鸟就不要看啦!)。
首先,看一下菜单的结构:

预览地址 :

css的代码为:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*左侧菜单*/
.sidebar-menu{
    
border-right
:
1px
solid
#c4c8cb
;
}
/*一级菜单*/
.menu-first{
    
height
:
45px
;
    
line-height
:
45px
;
    
background-color
:
#e9e9e9
;
    
border-top
:
1px
solid
#efefef
;
    
border-bottom
:
1px
solid
#e1e1e1
;
    
padding
:
0
;
    
font-size
:
14px
;
    
font-weight
:
normal
;
    
text-align
:
center
;
}
/*一级菜单鼠标划过状态*/
.menu-first:hover{
    
text-decoration
:
none
;
    
background-color
:
#d6d4d5
;
    
border-top
:
1px
solid
#b7b7b7
;
    
border-bottom
:
1px
solid
#acacac
;
}
/*二级菜单*/
.menu-second li a{
    
background-color
:
#f6f6f6
;
    
height
:
31px
;
    
line-height
:
31px
;
    
border-top
:
1px
solid
#efefef
;
    
border-bottom
:
1px
solid
#efefef
;
    
font-size
:
12px
;
    
text-align
:
center
;
}
/*二级菜单鼠标划过样式*/
.menu-second li a:hover {
    
text-decoration
:
none
;
    
background-color
:
#66c3ec
;
    
border-top
:
1px
solid
#83ceed
;
    
border-bottom
:
1px
solid
#83ceed
;
    
border-right
:
3px
solid
#f8881c
;
    
border-left
:
3px
solid
#66c3ec
;
}
/*二级菜单选中状态*/
.menu-second-selected {
    
background-color
:
#66c3ec
;
    
height
:
31px
;
    
line-height
:
31px
;
    
border-top
:
1px
solid
#83ceed
;
    
border-bottom
:
1px
solid
#83ceed
;
    
border-right
:
3px
solid
#f8881c
;
    
border-left
:
3px
solid
#66c3ec
;
    
text-align
:
center
;
}
/*覆盖bootstrap的样式*/
.nav-list,.nav-list li a{
    
padding
:
0px
;
    
margin
:
0px
;
}

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<
div
class
=
"sidebar-menu"
>
    
<
a
href
=
"#userMeun"
class
=
"nav-header menu-first collapsed"
data-toggle
=
"collapse"
><
i
class
=
"icon-user-md icon-large"
></
i
> 用户管理</
a
>
    
<
ul
id
=
"userMeun"
class
=
"nav nav-list collapse menu-second"
>
        
<
li
><
a
href
=
"#"
><
i
class
=
"icon-user"
></
i
> 增加用户</
a
></
li
>
        
<
li
><
a
href
=
"#"
><
i
class
=
"icon-edit"
></
i
> 修改用户</
a
></
li
>
        
<
li
><
a
href
=
"#"
><
i
class
=
"icon-trash"
></
i
> 删除用户</
a
></
li
>
        
<
li
><
a
href
=
"#"
><
i
class
=
"icon-list"
></
i
> 用户列表</
a
></
li
>
 
    
</
ul
>
    
<
a
href
=
"#articleMenu"
class
=
"nav-header menu-first collapsed"
data-toggle
=
"collapse"
><
i
class
=
"icon-book icon-large"
></
i
> 文章管理</
a
>
    
<
ul
id
=
"articleMenu"
class
=
"nav nav-list collapse menu-second"
>
        
<
li
><
a
href
=
"#"
><
i
class
=
"icon-pencil"
></
i
> 添加文章</
a
></
li
>
        
<
li
><
a
href
=
"#"
><
i
class
=
"icon-list-alt"
></
i
> 文章列表</
a
></
li
>
    
</
ul
>
</
div
>

源码下载地址为:

转载地址:http://hwlpa.baihongyu.com/

你可能感兴趣的文章
php--------获取当前时间、时间戳
查看>>
Spring MVC中文文档翻译发布
查看>>
docker centos环境部署tomcat
查看>>
JavaScript 基础(九): 条件 语句
查看>>
Linux系统固定IP配置
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
项目经理笔记一
查看>>
Hibernate一对一外键双向关联
查看>>
mac pro 入手,php环境配置总结
查看>>
MyBatis-Plus | 最简单的查询操作教程(Lambda)
查看>>
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>
IOE,为什么去IOE?
查看>>
java 用反射简单应用,将Object简单转换成map
查看>>
Storm中的Worker
查看>>
dangdang.ddframe.job中页面修改表达式后进行检查
查看>>
Web基础架构:负载均衡和LVS
查看>>