-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbinaryRacer.html
More file actions
302 lines (297 loc) · 13.3 KB
/
binaryRacer.html
File metadata and controls
302 lines (297 loc) · 13.3 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
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<!DOCTYPE html>
<html>
<head>
<title>Binary Games by JCK</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="preconnect" href="https://fonts.googleapis.com/" />
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/css/racerStyles.css" />
<noscript
><link rel="stylesheet" href="assets/css/noscript.css"
/></noscript>
</head>
<body class="is-preload">
<div id="wrapper">
<div
class="navContainer"
style="display: flex; justify-content: space-between"
>
<a
href="https://toby-leeder.github.io/binarygames-frontend/escaperoom.html/"
class="button"
style="margin: 2rem 0rem 0rem 0rem; font-size: 1rem"
onclick="localStorage.clear()"
>< <span style="font-size: 0.85rem">Log Out</span></a
>
<a
href="https://toby-leeder.github.io/binarygames-frontend/escaperoom.html/account.html"
class="button"
style="margin: 2rem 0rem 0rem 0rem; font-size: 1rem"
onclick=""
>Account</a
>
</div>
<!-- Header -->
<header
id="header"
class="alt"
style="padding: 3rem 0rem 2rem 0rem"
>
<h1><strong>Binary Games</strong></h1>
<p>Play individual games here!</p>
</header>
<!-- Nav -->
<nav id="nav3">
<ul>
<li><a href="escaperoom.html">Room</a></li>
<li><a href="leaderboard.html">Leaderboard</a></li>
<li><a href="binaryRacer.html" class="active">Games</a></li>
</ul>
</nav>
<nav id="nav2">
<ul>
<li>
<a href="#binaryRacer" class="active">Binary Racer</a>
</li>
<li>
<a href="https://toby-leeder.github.io/binarygames-frontend/escaperoom.html/pipes.html">Pipes</a>
</li>
<li>
<a href="https://toby-leeder.github.io/binarygames-frontend/escaperoom.html/logic.html">Logic</a>
</li>
<li>
<a href="https://toby-leeder.github.io/binarygames-frontend/escaperoom.html/rgbGuesser.html"
>RGB Guesser</a
>
</li>
<li>
<a href="https://toby-leeder.github.io/binarygames-frontend/escaperoom.html/bombDefusal.html"
>Bomb Defusal</a
>
</li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<!-- First Section -->
<section
id="first"
class="main special"
style="padding-bottom: 1rem"
>
<header class="major">
<h2>Games</h2>
</header>
</section>
<!-- Game code here -->
<div id="binaryRacer" class="gameSection">
<h2>Binary Racer</h2>
<div>
<br>
<!-- the div for the entire game starts here...-->
<div class="wrapper">
<div class="splash">
<h1 class="splash-header">
CLICK HERE TO START
</h1>
</div>
<div class="traffic-light" id="traffic-light">
<div class="light red"></div>
<div class="light yellow"></div>
<div class="light green"></div>
</div>
<div
class="end-screen"
id="end-screen"
style="display: none"
>
<p style="text-align: center">Time taken: <span id="end-time"></span></p>
</div>
<div id="game">
<div class="top-container">
<p></p>
<div class="questions-completed">
QUESTIONS COMPLETED:
</div>
<div
id="questions"
class="questions-completed"
>
0
</div>
<div class="questions-completed">/ 10</div>
<div class="time-container">
<div class="time-elapsed">TIME :</div>
<div class="time-elapsed" id="seconds">
00 :
</div>
<div class="time-elapsed" id="mins">
00
</div>
</div>
</div>
<div class="progressbar" id="progressbar1">
<div class="inner"></div>
</div>
<div class="image-container">
<div class="lines-body"></div>
<img src="images/BRG_road.png" alt="road" />
<canvas
id="spriteContainer"
class="carContainer"
>
<img
class="car1"
id="car"
src="images/carSprites.png"
/>
</canvas>
</div>
<div class="bottom-UI">
<div
class="questions-given"
id="questions-container"
>
QUESTIONS HERE
</div>
<div class="button-container">
<button
class="answer-button1"
id="answer-button1"
>
-
</button>
<button
class="answer-button2"
id="answer-button2"
>
-
</button>
<button
class="answer-button3"
id="answer-button3"
>
-
</button>
<button
class="answer-button4"
id="answer-button4"
>
-
</button>
</div>
</div>
<div id="progressbar"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<header
id="header"
class="alt"
style="margin: 0px; padding: 0px"
>
<span
class="logo"
style="
width: 100%;
padding-bottom: 20px;
margin: 40px auto;
"
><img
src="https://user-images.githubusercontent.com/111464932/233187334-7ad51d02-50ad-46cc-b634-aa8359a152b3.png"
alt=""
style="width: 175px"
/></span>
</header>
<section>
<h2>Created by Team JCK</h2>
<p>
2022-2023 Trimester 3 final project. <br /><br />
Contributors: <br />
Aiden Huynh, Toby Leeder, Azeem Khan, Dash Penning, Ekam
Kaire, Nathan Capule, Colin Mills, Ishi Singh.
</p>
<div
class="navContainer"
style="
display: flex;
justify-content: center;
margin: 0.75rem 0rem 0rem 0rem;
"
>
<a
href="http://scrum.binarygames.tech/"
class="button"
style="
margin: 0rem 2rem 0rem 0rem;
font-size: 0.75rem;
"
onclick=""
target="_blank"
>Scrum Board</a
>
<a
href="http://calendar.binarygames.tech"
class="button"
style="
margin: 0rem 0rem 2rem 0rem;
font-size: 0.75rem;
"
onclick=""
target="_blank"
>Calendar</a
>
<a
href="http://backend.binarygames.tech"
class="button"
style="
margin: 0rem 0rem 2rem 2rem;
font-size: 0.75rem;
"
onclick=""
target="_blank"
>Backend</a
>
</div>
<ul class="icons">
<li>
<a
href="https://github.com/toby-leeder/binarygames-frontend"
class="icon brands fa-github alt"
target="_blank"
><span class="label">GitHub</span></a
>
</li>
</ul>
</section>
<p class="copyright">
Binary Games by JCK. Original template by:
<a href="https://html5up.net">HTML5 UP</a>.
</p>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/stopCheating.js"></script>
<script src="assets/js/racer-script.js"></script>
</body>
</html>