forked from Kyrand/d3-smartphone-walking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (73 loc) · 1.78 KB
/
index.html
File metadata and controls
89 lines (73 loc) · 1.78 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
<!DOCTYPE html>
<meta charset="utf-8">
<style>
#chart-container{
margin:auto;
text-align:center;
font: 12px sans-serif;
}
.bar {
fill: steelblue;
}
.axis text {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis path {
<!-- display: none; -->
}
/* tell the SVG path to be a thin blue line without any area fill */
path {
stroke-width: 1;
fill: none;
}
svg{
float: left;
}
g.heatmap circle{
opacity:0.05;
}
.crow{
display: inline-block;
}
#timer{
font-size: 16px;
}
</style>
<div class='container'>
<h2 id='main-title'>Visualizing Walking Using Real-Time Web Sensor Accelerometers</h2>
<div id='chart-container'>
<div id='timer'></div>
<div class='crow'>
Person: Simon Walker
<svg id="chart_zx"></svg>
<image src='images/walker_axes.png'></image>
</div></br>
<div class='crow'>
Person: Marilyn M
<svg id="chart_zy"></svg>
</div>
<div class='crow'>
Person: Evelyn L
<svg id="chart_xy"></svg>
</div>
<hr>
<footer></footer>
</div>
</div>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet" media="screen">
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="/static/libs/jquery-extras/iframeResizer/js/iframeResizer.contentWindow.min.js"></script>
<script src="simple2d.js"></script>
<script src="heatmap.js"></script>
<script src="script.js"></script>
<script>
</script>