-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (34 loc) · 922 Bytes
/
index.html
File metadata and controls
39 lines (34 loc) · 922 Bytes
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
<!doctype html>
<html lang="en" style="overflow: hidden">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
<style>
* {
padding: 0;
margin: 0;
touch-action: none;
user-select: none;
-webkit-user-select: none;
}
.a {
position: absolute;
pointer-events: none;
}
.b {
translate: -50%;
left: 50%;
background: #000;
font-weight: bold;
text-align: center;
overflow: hidden;
white-space: nowrap;
}
</style>
</head>
<body id="b" style="height: 100vh; overflow: hidden">
<canvas id="c"></canvas>
<script type="module" src="./ts/index.ts"></script>
<div id="x" class="a"><div class="b"></div></div>
</body>
</html>