-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataSleep.html
More file actions
137 lines (104 loc) · 4.19 KB
/
Copy pathdataSleep.html
File metadata and controls
137 lines (104 loc) · 4.19 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE HTML>
<html>
<head>
<title>睡眠数据</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<link rel="icon" href="images/logo.ico">
<!-- 新 Bootstrap 核心 CSS 文件 -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/init.css">
<link rel="stylesheet" href="assets/css/dataSleep.css">
</head>
<body>
<!--<div id="page-wrapper">-->
<!-- Header -->
<header id="header">
<h1><a href="#">Runner</a></h1>
<nav id="nav">
<ul>
<li><a href="home.html">首页</a></li>
<li>
<a href="dataRun.html" >数据</a>
</li>
<li><a href="competitionAll.html">竞赛</a></li>
<li><a href="moments.html">圈子</a></li>
<li><a href="market.html">商城</a></li>
<li>
<a href="#" class="icon fa-angle-down">个人中心</a>
<ul>
<li style="white-space: nowrap"><a href="userInfo.html">修改信息</a></li>
<li style="white-space: nowrap"><a href="index.html" onclick="logout()">登出</a></li>
</ul>
</li>
</ul>
</nav>
</header>
<div class="container" >
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-6 col-md-offset-3 col-lg-offset-3 " id="nav-base">
<ul class=" nav nav-tabs" role="tablist">
<li role="presentation" ><a href="dataRun.html">运动数据</a></li>
<li role="presentation" ><a href="dataBody.html">身体数据</a></li>
<li role="presentation" class="active" ><a href="dataSleep.html">睡眠管理</a></li>
</ul>
</div>
<div class=" col-sm-8 col-md-8 col-lg-8 col-md-offset-2 col-lg-offset-2 ">
<div class="jumbotron">
<div >
<h1>Have A Good Dream!</h1>
<p>您知道吗,良好的睡眠可以使您有着一个更好的心情以及更强壮的身体!</p>
</div>
<p><a class="btn btn-primary btn-lg" href="sleepMore.html" role="button">了解更多</a></p>
</div>
</div>
</div>
<div class="row">
<div class=" col-sm-8 col-md-4 col-lg-4 col-md-offset-2 col-lg-offset-2 basebac" >
<div class=" basediv " id="chart-sleep-count">
</div>
</div>
<div class=" col-sm-8 col-md-4 col-lg-4 basebac ">
<div class=" basediv " id="chart-sleep-dist">
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<ul class="icons">
<li><a href="#" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="#" class="icon fa-instagram"><span class="label">Instagram</span></a></li>
<li><a href="#" class="icon fa-github"><span class="label">Github</span></a></li>
<li><a href="#" class="icon fa-dribbble"><span class="label">Dribbble</span></a></li>
<li><a href="#" class="icon fa-google-plus"><span class="label">Google+</span></a></li>
</ul>
<ul class="copyright">
<li>© JiayiWu. All rights reserved.</li><li> <a href="http://218.94.159.99/">南京大学软件学院2016[面向Web计算]课程项目</a></li>
</ul>
</footer>
<!--</div>-->
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/echarts.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/jquery.scrollgress.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
<script type="text/javascript" src="assets/js/dataSleep.js"></script>
<script>
function logout() {
jQuery.ajax({
url: 'user/logout',
cache: false
})
}
</script>
</body>
</html>