-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
index.html
50 lines (38 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>JS Chronometer</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<section id="splits-container">
<h3>Splits</h3>
<ol id="splits">
</ol>
</section>
<div class="leash leash-top"></div>
<section id="clock">
<div id="sphere">
<span id="minDec" class="number">0</span><span id="minUni" class="number">0</span><span>:</span><span id="secDec" class="number">0</span><span id="secUni" class="number">0</span>
<div id="centiseconds">
<span id="centisecDec">0</span><span id="centisecUni">0</span>
</div>
<button id="btnLeft" class="btn start">START</button> <button id="btnRight" class="btn reset">RESET</button>
</div>
</section>
<div class="leash leash-bottom">
<div class="hole"></div>
<div class="hole"></div>
<div class="hole"></div>
</div>
<!-- Iterations 1 - 8 -->
<script src="src/chronometer.js"></script>
<!-- Bonus Iteration 9: Centiseconds -->
<!-- <script src="src/chronometer-centiseconds.js"></script> -->
<!-- DOM manipulation logic -->
<script src="src/index.js"></script>
</body>
</html>