-
Notifications
You must be signed in to change notification settings - Fork 0
/
scoreboard_timers.html
263 lines (252 loc) · 9.93 KB
/
scoreboard_timers.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
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
html {
height: 100%;
margin: 0px;
padding: 0px;
border: 0px solid green;
}
body {
min-height: 100%;
padding: 20px;
width: 1000px;
margin: auto;
border: 0px solid blue;
color: white;
background-color: black;
}
p {
font-size: 3rem;
}
input, button {
font-size: 2rem;
}
hr {
margin: auto;
}
.score {
width: 3em;
}
</style>
<title>CKO Scoreboard Timers</title>
</head>
<body class="w3-display-container">
<!-- Game Clock -->
<div id="game-clock-controls">
<p id="game-clock-name">Game Clock</p>
<p id="game-clock">30:00</p>
<div id="game-clock-buttons">
<p id="game-clock-minutes-buttons">
<span>Min: </span>
<button type="button" id="add-1-min-game-clock"
onclick="addToTimer()">
+1
</button>
<button type="button" id="subtract-1-min-game-clock"
onclick="addToTimer()">
−1
</button>
<button type="button" id="add-10-min-game-clock"
onclick="addToTimer()">
+10
</button>
<button type="button" id="subtract-10-min-game-clock"
onclick="addToTimer()">
−10
</button>
</p>
<p id="game-clock-seconds-buttons">
<span>Sec: </span>
<button type="button" id="add-1-sec-game-clock"
onclick="addToTimer()">
+1
</button>
<button type="button" id="subtract-1-sec-game-clock"
onclick="addToTimer()">
−1
</button>
<button type="button" id="add-10-sec-game-clock"
onclick="addToTimer()">
+10
</button>
<button type="button" id="subtract-10-sec-game-clock"
onclick="addToTimer()">
−10
</button>
</p>
</div>
<p id="game-clock-input-fields">
<span>Min </span>
<input type="number" class="score" name="game-clock-minutes-input"
maxlength="2em" id="game-clock-minutes-input"
aria-label="Game Clock Minutes Input" placeholder="min">
<input type="number" class="score" name="game-clock-seconds-input"
maxlength="2em" id="game-clock-seconds-input"
aria-label="Game Clock Seconds Input" placeholder="sec">
<span> Sec</span>
</p>
<p id="game-clock-update-buttons">
<button type="button" id="update-game-clock"
onclick="updateGameClock()">
Update Game Clock
</button>
<button type="button" id="reset-game-clock"
onclick="resetGameClock()">
Reset Game Clock
</button>
</p>
</div>
<hr/>
<!-- Jam Timer -->
<div id="jam-timer-controls">
<p id="jam-timer-name">Jam Timer</p>
<p id="jam-timer-clock">
<span>1:00 </span>
</p>
<div id="jam-timer-buttons">
<p id="jam-timer-start-stop-reset-buttons">
<button type="button" id="start-stop-jam-timer"
onclick="startStopTimer()">
Start/Stop
</button>
<button type="button" id="reset-jam-timer"
onclick="resetTimer()">
Reset
</button>
</p>
<p id="jam-timer-minutes-buttons">
<span>Min: </span>
<button type="button" id="add-1-min-jam-timer"
onclick="addToTimer()">
+1
</button>
<button type="button" id="subtract-1-min-jam-timer"
onclick="addToTimer()">
−1
</button>
</p>
<p id="jam-timer-seconds-buttons">
<span>Sec: </span>
<button type="button" id="add-1-sec-jam-timer"
onclick="addToTimer()">
+1
</button>
<button type="button" id="subtract-1-sec-jam-timer"
onclick="addToTimer()">
−1
</button>
<button type="button" id="add-10-sec-jam-timer"
onclick="addToTimer()">
+10
</button>
<button type="button" id="subtract-10-sec-jam-timer"
onclick="addToTimer()">
−10
</button>
</p>
</div>
<p id="jam-timer-input-fields">
<span>Min </span>
<input type="number" class="score" name="jam-timer-minutes-input"
maxlength="2em" id="jam-timer-minutes-input"
aria-label="Jam Timer Minutes Input" placeholder="min">
<input type="number" class="score" name="jam-timer-seconds-input"
maxlength="2em" id="jam-timer-seconds-input"
aria-label="Jam Timer Seconds Input" placeholder="sec">
<span> Sec</span>
</p>
<p id="jam-timer-update-buttons">
<button type="button" id="update-jam-timer"
onclick="updateJamTimer()">
Update Jam Timer
</button>
</p>
</div>
<hr>
<!-- Jam Number -->
<div id="jam-number-controls">
<p id="jam-number-name">Jam Number</p>
<p id="jam-number">0</p>
<p id="jam-number-buttons">
<button type="button" id="add-1-jam-number"
onclick="addToJam()">
+1
</button>
<button
type="button" id="subtract-1-jam-number"
onclick="addToJam()">
−1
</button>
</p>
<p id="jam-number-inputs">
<input type="number" class="score" name="jam-number-input"
maxlength="2em" id="jam-number-minutes-input"
aria-label="Jam Number Input" placeholder="0">
<button type="button" id="update-jam-number"
onclick="updateJamNumber()">
Update Jam Number
</button>
<button type="button" id="reset-jam-number"
onclick="resetJamNumber()">
Reset Jam Number
</button>
</p>
</div>
<hr/>
<!-- Period Number -->
<div id="period-number-controls">
<p id="period-number-name">Period</p>
<p id="period-number">1</p>
<p id="period-display-buttons">
<button type="button" id="toggle-period-number"
onclick="togglePeriod()">
Toggle P1 / P2
</button>
<button type="button" id="end-period-1"
onclick="endPeriod()">
End of Period 1
</button>
<button type="button" id="end-period-2"
onclick="endPeriod()">
End of Period 2
</button>
</p>
</div>
<hr/>
<!-- Time Out Timer -->
<div id="time-out-timer-controls">
<p id="time-out-timer-name">Time Out</p>
<p id="time-out-timer-clock">
<span>1:00 </span>
</p>
<p id="time-out-timer-buttons">
<button type="button" id="start-stop-time-out-timer"
onclick="startStopTimer()">
Start/Stop
</button>
<button type="button" id="reset-time-out-timer"
onclick="resetTimer()">
Reset
</button>
</p>
</div>
<hr/>
<!-- Final Score -->
<div id="final-score-controls">
<p id="final-score-name">Display "Final Score"</p>
<p id="final-score-button">
<button type="button" id="display-final-score"
onclick="displayFinalScore()">
Final Score
</button>
</p>
</div>
<script type="text/javascript" src="js/scoreboard_controls.js"></script>
<hr/>
<!-- <script type="text/javascript" src="js/create_scoreboard_buttons.js"></script> -->
</body>
</html>