-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (56 loc) · 1.93 KB
/
index.html
File metadata and controls
58 lines (56 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>3D Reaction Time</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="blocker">
<div id="instructions">
<div class="main">
<h1 id="playButton">Click to play</h1>
<h2>Controls</h2>
<div>
<p class="alignLeft">Move:</p> <p class="alignRight">W, A, S, D</p><br/>
<p class="alignLeft">Select:</p> <p class="alignRight">Left MB</p><br/>
<p class="alignLeft">Start:</p> <p class="alignRight">Space</p><br/>
<p class="alignLeft">Look:</p> <p class="alignRight">Mouse</p>
</div>
</div>
<div class="second">
<h2>How to Play</h2>
<ol>
<li>Press Space to Start</li>
<li>Select the green Ball</li>
<li>Repeat</li>
</ol>
</div>
</div>
</div>
<div id="HUD">
<div class="active">
<h1>Active Time</h1>
<p id="activeTimeHUD">00m 00s 000ms</p>
</div>
<div class="highscore">
<h1>Highscore</h1>
<p id="highscoreTimeHUD">00m 00s 000ms</p>
</div>
<div class="crossHair">
<div class="top"></div>
<div class="left"></div>
<div class="bottom"></div>
<div class="right"></div>
</div>
<div class="count">
<h1 id="HUDCount">0/0</h1>
</div>
<div class="responseContainer">
<h1 id="HUDResponse"></h1>
</div>
</div>
<script type="module" src="app/main.js"></script>
</body>
</html>