-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.78 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>FuelDataVisualizer</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="app.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
</head>
<body>
<div class="tooltip"></div>
<div id="app"></div>
<div class="histogram">
<div class="inner-histogram">
<div id="date-range">
<div class="playback-controls">
<svg id="controls-play" xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24">
<path id="play-path" fill="#efefef" d="M8 5v14l11-7z" style="display: block;"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
<path id="pause-path" style="display: none;" s="" d="M6 19h4V5H6v14zm8-14v14h4V5h-4z" fill="#efefef"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
<svg id="controls-restart" xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 24 24">
<path d="M0 0h24v24H0z" fill="none"></path>
<path fill="#efefef"
d="M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z">
</path>
</svg>
<span id="min"></span>
<span id="custom-play"><input id="preseve" type="checkbox">Preserve history during
playback</span>
<span id="max"></span>
</div>
</div>
<div id="graph"></div>
<div id="slider"></div>
</div>
</div>
</body>
<script type="text/javascript" src="app.js"></script>
</html>