Skip to content

Commit 875cecf

Browse files
zhanglongzhanglong
authored andcommitted
add index.html
1 parent 743b1de commit 875cecf

14 files changed

+16381
-0
lines changed

src/main/webapp/bootstrap/css/bootstrap-theme.css

Lines changed: 457 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/bootstrap/css/bootstrap-theme.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/bootstrap/css/bootstrap-theme.min.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/bootstrap/css/bootstrap.css

Lines changed: 6358 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/bootstrap/css/bootstrap.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/bootstrap/css/bootstrap.min.css

Lines changed: 6907 additions & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.

src/main/webapp/bootstrap/fonts/glyphicons-halflings-regular.svg

Lines changed: 229 additions & 0 deletions
Loading
Binary file not shown.
Binary file not shown.

src/main/webapp/bootstrap/js/bootstrap.js

Lines changed: 2276 additions & 0 deletions
Large diffs are not rendered by default.

src/main/webapp/bootstrap/js/bootstrap.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main/webapp/index.html

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
<!DOCTYPE html>
2+
<html lang="zh-cn">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>首页</title>
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
9+
<link rel="stylesheet" href="bootstrap/css/bootstrap-theme.min.css">
10+
11+
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
12+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
13+
<!--[if lt IE 9]>
14+
<script src="http://cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
15+
<script src="http://cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script>
16+
<![endif]-->
17+
18+
<style type="text/css">
19+
body {
20+
padding-top: 70px;
21+
}
22+
div.list-group a:hover{
23+
cursor: pointer;
24+
background-color: #CCCCCC;
25+
}
26+
</style>
27+
</head>
28+
<body>
29+
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse" role="navigation">
30+
<div class="container">
31+
<div class="navbar-header">
32+
<button type="button" class="navbar-toggle collapsed"
33+
data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
34+
<span class="sr-only">导航栏</span> <span class="icon-bar"></span> <span
35+
class="icon-bar"></span> <span class="icon-bar"></span>
36+
</button>
37+
<a class="navbar-brand" href="#">测试平台</a>
38+
</div>
39+
<!-- Collect the nav links, forms, and other content for toggling -->
40+
<div class="collapse navbar-collapse"
41+
id="bs-example-navbar-collapse-1">
42+
<ul class="nav navbar-nav ">
43+
<li class="active"><a href="#">首页</a></li>
44+
</ul>
45+
<form class="navbar-form navbar-left" role="search">
46+
<div class="form-group">
47+
<input type="text" class="form-control" placeholder="输入查询内容">
48+
</div>
49+
<button type="submit" class="btn btn-default">搜索</button>
50+
</form>
51+
<ul class="nav navbar-nav navbar-right">
52+
<li><a href="#">关于</a></li>
53+
<li class="dropdown"><a href="#" class="dropdown-toggle"
54+
data-toggle="dropdown">用户账号<span class="caret"></span></a>
55+
<ul class="dropdown-menu" role="menu">
56+
<li><a href="#">用户信息</a></li>
57+
<li class="divider"></li>
58+
<li><a href="#">设置</a></li>
59+
<li class="divider"></li>
60+
<li><a href="#">退出</a></li>
61+
</ul></li>
62+
</ul>
63+
</div>
64+
</div>
65+
66+
</nav>
67+
<div class="container-fluid">
68+
<div class="row">
69+
<div class="col-md-2">
70+
<div class="list-group" style="min-height:600px; border:1px solid #B4CDCD; ">
71+
<a href="#" class="list-group-item active">用户管理</a>
72+
<a href="#" class="list-group-item">菜单管理</a>
73+
<a href="#" class="list-group-item">报表统计</a>
74+
<a href="#" class="list-group-item">系统设置</a>
75+
<a href="#" class="list-group-item">权限管理</a>
76+
77+
<a href="#" class="list-group-item">用户管理</a>
78+
<a href="#" class="list-group-item">菜单管理</a>
79+
<a href="#" class="list-group-item">报表统计</a>
80+
<a href="#" class="list-group-item">系统设置</a>
81+
<a href="#" class="list-group-item">权限管理</a>
82+
<a href="#" class="list-group-item">用户管理</a>
83+
<a href="#" class="list-group-item">菜单管理</a>
84+
<a href="#" class="list-group-item">报表统计</a>
85+
<a href="#" class="list-group-item">系统设置</a>
86+
<a href="#" class="list-group-item">权限管理</a>
87+
</div>
88+
</div>
89+
<div class="col-md-10">
90+
<div class="table-responsive">
91+
<table class="table table-bordered">
92+
<thead>
93+
<tr>
94+
<th>#</th>
95+
<th>First Name</th>
96+
<th>Last Name</th>
97+
<th>Username</th>
98+
</tr>
99+
</thead>
100+
<tbody>
101+
<tr class="active">
102+
<td>1</td>
103+
<td>Mark</td>
104+
<td>Otto</td>
105+
<td>@mdo</td>
106+
</tr>
107+
<tr>
108+
<td>2</td>
109+
<td>Jacob</td>
110+
<td>Thornton</td>
111+
<td>@fat</td>
112+
</tr>
113+
<tr>
114+
<td>3</td>
115+
<td colspan="2">Larry the Bird</td>
116+
<td>@twitter</td>
117+
</tr>
118+
</tbody>
119+
</table>
120+
</div>
121+
</div>
122+
</div>
123+
</div>
124+
125+
<script src="jquery/jquery.min.js"></script>
126+
<script src="bootstrap/js/bootstrap.min.js"></script>
127+
<script type="text/javascript">
128+
$('.list-group > a').click(function (e) {
129+
e.preventDefault();
130+
$('.list-group > a').removeClass('active');
131+
$(this).addClass('active');
132+
});
133+
</script>
134+
135+
</body>
136+
</html>

src/main/webapp/jquery/jquery.min.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)