forked from cubing/timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (55 loc) · 2.12 KB
/
index.html
File metadata and controls
64 lines (55 loc) · 2.12 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="manifest" href="manifest.json">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="timer.cubing.net">
<link rel="apple-touch-icon" href="lib/favicons/touch-icon.png"/>
<meta property="og:image" content="https://timer.cubing.net/screenshot.png" />
<link rel="shortcut icon" id="favicon" href="lib/favicons/favicon_blue.ico"/>
<title>timer.cubing.net</title>
<script src="lib/fastclick.js" defer></script>
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="lib/cubing-icons/cubing-icons.css"/>
<script src="lib/MagicWorker.js" defer></script>
<script src="lib/scramble-worker.js" defer></script>
<script src="cubing.js" defer></script>
<script src="results.js" defer></script>
<script src="timer.js" defer></script>
<script src="timerApp.js" defer></script>
</head>
<body>
<div class="timer-app" id="timer-app">
<a id="update-bar" class="hidden" href="">
<span>App update ready (press here or reload)</span>
</a>
<div class="scramble-bar" id="scramble-bar">
<div class="event-select">
<span class="cubing-icon" id="cubing-icon"></span>
<select id="event-select-dropdown">
</select>
</div>
<span class="scramble-text" id="scramble-text">generating...</span>
</div>
<div class="timer" id="timer">
<div class="time">
<div class="sec">
<span class="sec-first"></span><span class="sec-rest">0</span>
</div>
<div class="decimals"><span class="dot">.</span><span class="decimal-digits">00</span><span class="invisible dot">.</span></div>
</div>
</div>
<span class="stats">
<select id="stats-dropdown">
<option id="avg5" value="avg5">avg5: ---</option>
<option id="avg12" value="avg12">avg12: ---</option>
<option id="mean3" value="mean3">mean3: ---</option>
<option id="best" value="best">best: ---</option>
<option id="worst" value="worst">worst: ---</option>
<option id="num-solves" value="num-solves">#solves: 0</option>
</select>
</span>
</div>
</body>
</html>