-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (105 loc) · 4.34 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
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
<meta name="description" content="Prometheus - Recognition and definition.">
<meta name="author" content="github.com/xfarmer">
<link rel="icon" href="prometheus.ico">
<title>Prometheus</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet"/>
<link href="css/prometheus.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<script src="js/jquery/3.2.1/jquery.min.js"></script>
<script src="js/highstock.js"></script>
<script src="js/prometheus.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"
aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Prometheus</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<form class="navbar-form navbar-right">
<div class="form-group">
<input type="text" placeholder="Email" class="form-control">
</div>
<div class="form-group">
<input type="password" placeholder="Password" class="form-control">
</div>
<button type="submit" class="btn btn-success">Sign in</button>
</form>
</div><!--/.navbar-collapse -->
</div>
</nav>
<div class="jumbotron">
<div class="container">
<h1>Hello, welcome to Prometheus!</h1>
<p>Prometheus will help you identify data and discover value from it.</p>
</div>
</div>
<div class="container" style="margin-top: 30px; margin-bottom: 30px">
<div class="panel panel-primary">
<div class="panel-heading">
<h4>标注工具</h4>
</div>
<ul class="list-group" id="markerList">
<li class="list-group-item">
<a target="_top" class="button" title="游泳真值标注" href="swimming_cleaner.html">游泳真值标注</a>
</li>
<li class="list-group-item">
<a target="_top" class="button" title="游泳范围标注" href="swimming_marker.html">游泳范围标注</a>
</li>
<li class="list-group-item">
<a target="_top" class="button" title="活动数据标注" href="activity_marker.html">活动数据标注</a>
</li>
<li class="list-group-item">
<a target="_top" class="button" title="睡眠范围标注" href="sleep_marker.html">睡眠范围标注</a>
</li>
</ul>
</div>
<div class="panel panel-primary">
<div class="panel-heading">
<h4>清洗工具</h4>
</div>
<ul class="list-group" id="cleanerList">
<li class="list-group-item">
<a target="_top" class="button" title="手势数据清洗" href="gesture_cleaner.html">手势数据清洗</a>
</li>
</ul>
</div>
<div class="panel panel-primary">
<div class="panel-heading">
<h4>地图工具</h4>
</div>
<ul class="list-group" id="mapList">
<li class="list-group-item">
<a target="_top" class="button" title="地图绘制" href="show_gps.html">地图绘制</a>
</li>
</ul>
</div>
</div>
</body>
<!-- Footer -->
<footer class="footer navbar navbar-inverse navbar-fixed-bottom">
<div class="container">
<!-- Copyright -->
<div class="footer-copyright text-center" style="color: #ffffff; margin-top: 10px;">Copyright © 2018:
<a href="https://github.com/xfarmer"> xfarmer@github</a> All Rights Reserved.
</div>
<!-- Copyright -->
</div>
</footer>
<!-- Footer -->
<script src="js/bootstrap/3.3.7/bootstrap.min.js"></script>
</html>