-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
86 lines (78 loc) · 3.13 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
82
83
84
85
86
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Maze Runner</title>
<meta name="keywords" content="Maze Runner Game" />
<meta name="description" content="Maze Runner Game" />
<link href='http://fonts.googleapis.com/css?family=Press+Start+2P|Electrolize' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen"/>
</head>
<body id="body">
<div class="container">
<div class="maze-container">
<h1 id="title">Maze Runner</h1>
<div class="col-12">
<h3 id="monster-title">Select the number of Monsters</h3>
<select id="monsterNum">
<option value="">Choose Monster Total #</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
</select>
</div>
<div id="dashboard">
<div class="col-4">
<div>Score</div>
<div id="score">0</div>
</div>
<div class="col-4">
<div>Score Multiplier</div>
<div id="scoreMulti">1</div>
</div>
<div class="col-4">
<div>Timer</div>
<div id="timer">5:00</div>
</div>
<div class="clear"></div>
<div class="col-12">
<div id="monster-title">
<div id="bomb-left" class="special-items"><img src="img/bomblarg.gif" /></div>
<div id="power-left" class="special-items"><img src="img/power.gif" /></div>
</div>
</div>
</div>
<canvas class="canvas" width="856" height="518" id="mazecanvas">Can't load the maze game, because your browser doesn't support HTML5.</canvas>
<noscript>JavaScript is not enabled. To play the game, you should enable it.</noscript>
<div id="rules" class="rules">
<h3>Game Rules:</h3>
<p><span>Object of Game:</span> Move your brown smiley face through the maze and exit the maze through the red door.
</p>
<p><span>Scoring:</span> Eat Cake to score even more points! The more monsters you add, the higher the score multiplier will be.
</p>
<p><span>Warning</span> If a blue monster touches you, you're dead . If the time limit
ends you're dead.
</p>
<p><span>Special Powers:</span> Put the magical ring on and become invisible for 3 secs so that you are not eaten. Be careful You can only use this once</p>
<p>Good luck and stay alive!</p>
</div>
</div>
</div>
<!--JS FILES STARTS-->
<script type="text/javascript" src="js/mazerunner.js"></script>
</body>
</html>