-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (43 loc) · 2.16 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Zombie's Attack</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='style.css'>
</head>
<body>
<button id="startGame" onclick="startGame()">Start</button>
<div class="container">
<button class='button' id="startzombies" onclick="goBut=true;zombieTimerid=setInterval(spawnZombies,1500)" hidden>GO</button>
<button class='button' id="pause" onclick="pause=true;document.getElementById('play').style.display='block';document.getElementById('pause').style.display='none'" hidden>Pause</button>
<button class='button' id="play" onclick="pause=false;document.getElementById('pause').style.display='block';document.getElementById('play').style.display='none'" hidden>Play</button>
</div>
<div style="display:none;">
<img id="block" src="images/block.png"/>
<img id="player" src="images/player.png"/>
<img id="zombie" src="images/zombie.png"/>
</div>
<!-- flexible canvas size -->
<div class="container">
<p class="paragraph">
<canvas id="gameboardCanvas" width='800' height='600'></canvas>
</p>
<p class="paragraph rules" >
INSTRUCTONS!<br/>
<span style="font-size: 20px;">
Click on the Start button to start the game.<br/>
Click on the screen to set up defence blocks.<br/>
Once all the blocks are setup(6) click on the screen once to initialise game.<br/>
Click on the go button to let the zombies come.<br/>
Direct your mouse and press space to shoot bullets only one at a time.<br/>
Kill the zombies. <br/>
Escape from them or else you might loose your life and if all health is lost you loose the game.<br/>
Controls=> Left: A Right: D Jump: W<br/>
</span>
</p>
</div>
<script src='main.js'></script>
</body>
</html>