-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (44 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="monetization" content="$ilp.uphold.com/9xHb7Uy4ffjz" />
<title>Astronaut in Trouble</title>
</head>
<style>
html, body{
/* overflow: hidden; */
background-color: rgb(12, 13, 32);
/* height: 100vh; */
}
*{margin:0}
#screen{
/* width: 100%;
height: 100%; */
min-width: 100%;
min-height: 100vh;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-crisp-edges;
image-rendering: pixelated;
image-rendering: crisp-edges;
touch-action: none;
}
#comands{
/* position: absolute; */
}
</style>
<body>
<div id="gameArea">
<div id="comands">
<!-- <button id="startGame">Start Game</button> -->
<!-- <button id="fullscreen">Full</button> -->
<!-- <button id="reset">Reset</button> -->
</div>
<canvas id="screen"></canvas>
</div>
<script src="newMain.js"></script>
<!-- <script src="main.js"></script> -->
</body>
</html>