-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (47 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<title>Aquatic Beast Force</title>
<style>
body {
background-color: rgb(191, 175, 137);
}
div {
position: absolute;
top: 50%;
left: 50%;
}
canvas {
margin-left: -245px;
margin-top: -221px;
background-color: #C5CCA1;
border: 10px solid rgb(175, 127, 112);
box-shadow: 10px 10px 0px 0px rgba(159, 93, 108, 1);
}
img {
height: 150px;
image-rendering: pixelated;
margin-left: -173px;
margin-top: -450px;
padding-bottom: 250px;
}
</style>
<script src="lib/ext/html5Preloader.js"></script>
<script src="lib/controls.js"></script>
<script src="lib/bitmap.js"></script>
<script src="lib/camera.js"></script>
<script src="lib/shadow.js"></script>
<script src="lib/player.js"></script>
<script src="lib/groundTile.js"></script>
<script src="lib/gameLoop.js"></script>
<script src="lib/game.js"></script>
</head>
<body>
<div>
<canvas id="gameCanvas" width="480" height="432"></canvas>
</div>
<div>
<img src="assets/logo.png" />
</div>
</body>
</html>