-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.12 KB
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 1.12 KB
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
<!doctype html>
<head>
<title>In the Mood</title>
<meta charset="utf-8">
<link href="css/style.css" rel="stylesheet">
<script src="js/phaser.min.js"></script>
<script src="js/main.js"></script>
<script src="js/hero.js"></script>
<script src="js/enemy.js"></script>
</head>
<body>
<div class="wrapper">
<div id="game" class="game">
<button onClick="getElementById('info').removeAttribute('style');"
type="button">Game Info</button>
</div>
</div>
<div id="info" style="display:none;">
<div class="overlay"></div>
<div class="visible">
<h2>In the Mood</h2>
<div class="content">
<img src="images/hero_controll.png" style="width:500px">
<img src="images/controll_key.png" style="width:150px">
<p>This is a simple platforming game called "In the mood." The goal of the game is to pick up the key and open the door to go to the next level. On the way you can collect crystals, just beware of the enemies (you can kill them by jumping on top of them, HB)</p>
</div>
<button type="button" onClick="getElementById('info').style.display='none';">Close</button>
</div>
</div>
</body>