forked from ChromeGaming/PACKABUNCHAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 929 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 lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>PACKABUNCHAS</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🚀</text></svg>">
<style>
.c {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: #FFEA7E;
touch-action: none;
}
.c canvas {
object-fit: contain;
max-height: 100%;
max-width: 100%;
touch-action: none;
}
</style>
</head>
<body>
<div class="c">
<canvas id="v" width="1080" height="1920"></canvas>
</div>
<script src="game.js"></script>
</body>
</html>