-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
27 lines (26 loc) · 897 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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<style media="screen" type="text/css">
canvas {
background-color: black;
width: 480px;
height: 360px;
image-rendering: optimizeSpeed; /* Legal fallback */
image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -o-crisp-edges; /* Opera */
image-rendering: -webkit-optimize-contrast; /* Safari */
image-rendering: optimize-contrast; /* CSS3 Proposed */
image-rendering: crisp-edges; /* CSS4 Proposed */
image-rendering: pixelated; /* CSS4 Proposed */
-ms-interpolation-mode: nearest-neighbor; /* IE8+ */
}
</style>
<script data-main="game" src="require.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="game"></div>
<div id="fs-btn"></div>
</body>
</html>