-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
63 lines (55 loc) · 1.86 KB
/
game.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum=scale=1, user-scalable=no">
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script type="text/javascript" src="js/phaser.min.js"></script>
<script src="js/startScene.js"></script>
<script src="js/gameMain.js"></script>
<script src="js/secondLvl.js"></script>
<script src="js/endScene.js"></script>
<script src="js/youWonScene.js"></script>
<script src="js/gameSetup.js"></script>
<script type="text/javascript" src="js/helpers.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<link rel="stylesheet" href="css/main.css">
<title>Jumpin Game</title>
</head>
<body>
<div class="grid-container">
<div class="header">
<h1>Jumpin'Game</h1>
<div id="wrap">
<div id="regbar">
<div id="navthing">
<h2><a href="#" id="loginform">Sign In</a> | <a href="index.html">Register</a></h2>
<div class="login">
<div class="arrow-up"></div>
<div class="formholder">
<div class="randompad">
<fieldset>
<label>Username</label>
<input type="text" id="username" />
<label>Password</label>
<input type="password" id="password" />
<input type="submit" id="submit" />
</fieldset>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="game_area">
</div>
<div class="legend">
<h3>Legend</h3>
<p>Try to collect as many diamonds as you can without stepping into the traps or touching the balls .</p>
<p>Do your best and help the little witch to save her dragon!</p>
<p>Use the left and right arrow keys to move the player around and the up arrow key or the space key to jump. </p>
</div>
</div>
</body>
</html>