-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (63 loc) · 2.53 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
<!DOCTYPE HTML>
<html>
<head>
<link rel='stylesheet' type='text/css' href='public/style/application.css'>
<link href='http://fonts.googleapis.com/css?family=Special+Elite' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<title>Game Of Afterlife</title>
</head>
<body>
<div class='header'>
<img alt='Game of Afterlife' src='public/img/game_of_afterlife_logo.png'>
<div class="score-container">
score: <span id="score">0</span>
</div>
</div>
<div class='panel'> Use ASWD to move
<br>
<div><div class="player-label">Player </div><div class="player-example"></div></div>
<div><div class="human-label">Human </div><div class="human-example"></div></div>
<div><div class="zombie-label">Zombie </div><div class="zombie-example"></div></div>
<div><div class="infected-label">Infected </div><div class="infected-example"></div></div>
<br>
<div>
<div>Hint:</div>
<div>The Game will speed up after the player is bitten.</div>
</div>
</div>
<div class='content'>
<div id='canvas-container'>
<canvas width='600' height='400'></canvas>
<div id="overlay">
<div class="overlay-content">
<div id="overlay-message"></div>
<button id='initialize-game'>Start Game</button>
</div>
</div>
</div>
</div>
<div class="footer" id="wrap">
<div id="left_col">
<h4><a href="https://github.com/ianaroot/game_of_afterlife">Original Game By</a></h4>
<ul>
<li><a href="https://github.com/ianaroot">@Ian</a></li>
<li><a href="https://github.com/philvargas">@Phil</a></li>
<li><a href="https://github.com/c14jcdj">@Chermaine</a></li>
<li><a href="https://github.com/hpchesss">@Hunter</a></li>
<li><a href="https://github.com/menor">@Jose</a></li>
<li><a href="https://github.com/elreimundo">@David</a></li>
</ul>
</div>
<div id="right_col">
<h4><a href="https://github.com/philvargas/js_game_of_afterlife"> OOJS Remake Version By</a></h4>
<ul>
<li><a href="https://github.com/philvargas">@Phil</a></li>
<li><a href="https://github.com/hpchesss">@Hunter</a></li>
<li><a href="https://github.com/jonathanpeterwu">@Johnny</a></li>
</ul>
</div>
</div>
<!-- include source files here... -->
<script type="text/javascript" src="public/js/app.bundle.js"></script>
</body>
</html>