-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (56 loc) · 2.35 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>
<meta charset="UTF-8">
<title>Broccoli Game</title>
<link rel="shortcut icon" href="materials/broccoli.png" type="image/png">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="achivmentBlock">
<div class="achivments">
<p>Level: <span class="levelCount">1</span></p>
<p>Score: <span class="scoreCount">0</span></p>
<p>Lives:<div class="lifeCountContainer"></div></p>
</div>
<div class="info">
<div class="instructionsContainer">
<p class="instructionsContainerLabel">Instructions</p>
<div class="instructionsContainerItems">
<div class="instructionsContainerItem" id="controlsContextMenu">
<p>Controls</p>
</div>
<div class="instructionsContainerItem">
<p>Something else</p>
</div>
<div class="instructionsContainerItem">
<p>Something else</p>
</div>
</div>
</div>
</div>
</div>
<div class="instructionContextMenu hide">
<div class="contextMenu">
<img class="controlInstructionsClose" id="close" src="Materials/interface/close.png">
<p class="controlInstructionsTitle">Controls Instructions</p>
<div class="controlInstructions">
<div><img class="arrows-control-img" src="materials/interface/arrows-control.png"></div><div><p>move</p></div>
<div><p style="text-align: center">space</p></div><div><p>on/off pause</p></div>
</div>
</div>
</div>
<div class="gameOverBlock contextMenu">
<p class="gameOverText"><b>GAME OVER</b></p>
<a href=""><div class="playAgainButton"><p>PLAY AGAIN</p></div></a>
</div>
<!-- <div class="scoreShowingAnimationBlock"><span>+10</span></div> -->
<script src="js/jquery.min.js"></script>
<script src="js/Vector2d.class.js"> </script>
<script src="js/Food.class.js"> </script>
<script src="js/ProBro.class.js"> </script>
<script src="js/AchievementItem.class.js"> </script>
<script src="js/LifeItem.class.js"> </script>
<script src="js/script.js"> </script>
</body>
</html>