-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstop_watch.html
More file actions
182 lines (162 loc) · 3.97 KB
/
stop_watch.html
File metadata and controls
182 lines (162 loc) · 3.97 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<title>STOP WATCH</title>
<header>
<h1>The STOPWATCH!!</h1>
</header>
<style>
html {
background: linear-gradient(to top left, #336600 0%, #ff0066 100%);
font-size: 10px;
}
body {
margin: 0;
font-size: 2rem;
display: flex;
flex: 1;
min-height: 100vh;
align-items: center;
}
* {
margin: 0;
padding: 0;
}
.controls {
position: fixed;
text-align: center;
top: 1em;
width: 100%;
}
.button {
color: #bbb;
font-size: 4vw;
margin: 0 0.5em;
text-decoration: none;
}
.button:first-child {
margin-left: 0;
}
.button:last-child {
margin-right: 0;
}
.button:hover {
color: white;
}
.stopwatch {
font-size: 20vw;
height: 100%;
line-height: 100vh;
text-align: center;
}
.results {
border-color: lime;
list-style: none;
margin: 0;
padding: 0;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
}
</style>
</head>
<body>
<nav class="controls">
<a href="#" class="button" onClick="stopwatch.start();">Start</a>
<a href="#" class="button" onClick="stopwatch.lap();">Lap</a>
<a href="#" class="button" onClick="stopwatch.stop();">Stop</a>
<a href="#" class="button" onClick="stopwatch.restart();">Restart</a>
<a href="#" class="button" onClick="stopwatch.clear();">Clear Laps</a>
</nav>
<div class="stopwatch"></div>
<ul class="results"></ul>
</body>
<script>
class Stopwatch {
constructor(display, results) {
this.running = false;
this.display = display;
this.results = results;
this.laps = [];
this.reset();
this.print(this.times);
}
reset() {
this.times = [ 0, 0, 0 ];
}
start() {
if (!this.time) this.time = performance.now();
if (!this.running) {
this.running = true;
requestAnimationFrame(this.step.bind(this));
}
}
lap() {
let times = this.times;
let li = document.createElement('li');
li.innerText = this.format(times);
this.results.appendChild(li);
}
stop() {
this.running = false;
this.time = null;
}
restart() {
if (!this.time) this.time = performance.now();
if (!this.running) {
this.running = true;
requestAnimationFrame(this.step.bind(this));
}
this.reset();
}
clear() {
clearChildren(this.results);
}
step(timestamp) {
if (!this.running) return;
this.calculate(timestamp);
this.time = timestamp;
this.print();
requestAnimationFrame(this.step.bind(this));
}
calculate(timestamp) {
var diff = timestamp - this.time;
// Hundredths of a second are 100 ms
this.times[2] += diff / 10;
// Seconds are 100 hundredths of a second
if (this.times[2] >= 100) {
this.times[1] += 1;
this.times[2] -= 100;
}
// Minutes are 60 seconds
if (this.times[1] >= 60) {
this.times[0] += 1;
this.times[1] -= 60;
}
}
print() {
this.display.innerText = this.format(this.times);
}
format(times) {
return `\
${pad0(times[0], 2)}:\
${pad0(times[1], 2)}:\
${pad0(Math.floor(times[2]), 2)}`;
}
}
function pad0(value, count) {
var result = value.toString();
for (; result.length < count; --count)
result = '0' + result;
return result;
}
function clearChildren(node) {
while (node.lastChild)
node.removeChild(node.lastChild);
}
let stopwatch = new Stopwatch(
document.querySelector('.stopwatch'),
document.querySelector('.results'));
</script>
</html>