-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
35 lines (31 loc) · 828 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>melonJS - Keen</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
<style type="text/css">
html,
body {
display: block;
margin: 0;
padding: 0;
}
canvas {
display: block;
margin: 0 auto;
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
-ms-interpolation-mode: nearest-neighbor;
}
</style>
</head>
<body bgcolor="black">
<div id="jsapp"></div>
<script type="text/javascript" src="lib/melonJS-0.9.5.js"></script>
<script type="text/javascript" src="entities.js"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>