-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
92 lines (87 loc) · 2.98 KB
/
index.html
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
<title>Bootstrap design Base</title>
<!-- Bootstrap -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="plugins/bootstrap3-dialog/css/bootstrap-dialog.css" rel="stylesheet">
<!-- Bootstrap -->
<link href="css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header pull-left">
<a class="navbar-brand" href="#">
<i class="glyphicon glyphicon-leaf"></i>
Bootstrap template <span class="smaller-75">(v3.1.1)</span>
</a>
</div>
<div class="navbar-header navbar-right">
<a class="navbar-brand" href="/about/"><i class="glyphicon glyphicon-off"></i></a>
</div>
</div>
</div>
<div class="container main-container">
<h2 class="page-header text-primary">Welcome</small></h2>
<h4 class="text-success">Click on an item below to start</h4>
<div class="row">
<div class="col-xs-12">
<div class="list-group">
<a href="list.html" class="list-group-item">
Demo Pages
</a>
<a href="html/#help" class="list-group-item">
Demo Pages with On-Page Help Feature Enabled
</a>
<hr />
<a href="docs/" class="list-group-item">
Documentation
</a>
<hr />
<a href="build/css.html" class="list-group-item">
CSS Builder
</a>
<a href="build/js.html" class="list-group-item">
Javascript Builder
</a>
<hr />
<a href="examples/" class="list-group-item">
Examples
</a>
</div>
</div>
</div>
</div>
<div class="container main-container">
<div class="panel panel-default">
<div class="panel-heading">
弹窗测试
</div>
<!-- /.panel-heading -->
<div class="panel-body">
<button class="btn btn-default" id="dialog-alert">alert</button>
<button class="btn btn-default" id="dialog-confirm">confirm</button>
<button class="btn btn-default" id="dialog-normal">normal</button>
</div>
<!-- /.panel-body -->
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.js"></script>
<script src="plugins/bootstrap3-dialog/js/bootstrap-dialog.js"></script>
<script src="js/app.js"></script>
</body>
</html>