-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (74 loc) · 2.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Roots</title>
<link href="style/main.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="favicon.ico">
</head>
<body>
<div class="container">
<div class="game-container">
<div class="items-container">
</div>
</div>
<div class="side-container">
<div class="score-container">
<br>
<div class="stat" id="score"></div> Points
<br>
Round <div class="stat" id="level-level"></div>-<div class="stat" id="level-room"></div>
<br>
<div class="stat" id="correct"></div>/<div class="stat" id="total"></div> Correct
<br>
<div class="stat" id="streak"></div> Round Streak
</div>
<div class="best-score-container">
<br>
<div class="stat" id="best-score"></div> Points
<br>
Round <div class="stat" id="best-level-level"></div>-<div class="stat" id="best-level-room"></div>
<br>
<div class="stat" id="best-streak"></div> Round Streak
</div>
</div>
<div class="game-message">
<div class="message-container">
<div class="game-over">
Game Over!
<div class="lower">
<a class="retry-button">Try Again</a>
</div>
</div>
<div class="game-stats">
<div class="lower">
<a class="back-button">Back</a>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class="information-title">
How To Play
</div>
<div class="information">
<ul>
<li>To start place your mouse in the gray box.</li>
<li>When you move your mouse off of the box, it will change color. Move to the opposite box of the same color and repeat.</li>
<li>Hitting the correct color will give 200 points, but the wrong color will take away 100.</li>
<li>However, now and then you will get a liar, with a black outline.</li>
<li>Liars give 500 point if you choose a different color and take 200 away if you chose the 'correct' color.</li>
<li>You will loose points over time, and the higher level (round) you are the faster you loose points.</li>
<li>See how long you can keep your points in the positive!</li>
</ul>
</div>
<div class="information-title">
Good luck!
</div>
<script src="js/html_manipulator.js"></script>
<script src="js/game_stats.js"></script>
<script src="js/game.js"></script>
<script src="js/application.js"></script>
</body>
</html>