-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 1.19 KB
/
index.html
File metadata and controls
52 lines (49 loc) · 1.19 KB
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
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>WCanvas</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
background: #222;
touch-action: none;
}
#wasm-example {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
}
canvas {
display: block;
position: absolute;
top: 0;
left: 0;
touch-action: none;
}
</style>
</head>
<body>
<div id="wasm-example"></div>
<script type="module">
import init from './pkg/wcanvas.js';
init();
</script>
</body>
</html>