-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
46 lines (43 loc) · 1.47 KB
/
menu.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
<!DOCTYPE html>
<html>
<head>
<title>This Game Needs A Name_</title>
<link rel="stylesheet" href="menu.css">
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="libs/perlin-noise-classical.js"></script>
<script type="text/javascript" src="libs/perlin-noise-simplex.js"></script>
<script type="text/javascript" src="SeparatedImage.js"></script>
<script type="text/javascript" src="Generator.js"></script>
<script src="menu.js"></script>
<link rel="icon"
type="image/png"
href="gameneedsname-icon.png">
</head>
<body>
<canvas id="canvas"></canvas>
<div id="center">
<h1 id="title"></h1>
<h1 id="cursor">_</h1>
<input id="textbox" class="title" type="text" name="entry" width="500px" height="50px" autofocus value="This game needs a name">
<button onclick="loadNext()">Next</button>
</div>
<div id="tutorial">
<div id="box">
<h2>Jump with [space]</h2>
<h3>Double jump by consuming green</h3>
</div>
<div id="box">
<h2>Fire with [F]</h2>
<h3>Shooting consumes red</h3>
</div>
<div id="box">
<h2>Shield with [D]</h2>
<h3>Shielding consumes blue</h3>
</div>
</div>
<footer>
<h2>Created by</h2>
<h2>Andrew Brough Ryan Bottriell Bethany Dunfield Lukundu Lako</h2>
</footer>
</body>
</html>