-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
69 lines (56 loc) · 1.27 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<html>
<head>
<meta charset="UTF-8" />
<style>
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
flex-flow: column;
align-items: center;
background: black;
color: white;
font-family: sans-serif;
}
#start-button-wrapper {
height: 720px;
width: 1280px;
display: flex;
justify-content: center;
}
#start-button {
font-size: 32px;
border-radius: 4px;
padding: 10px;
background: #2c2c2c;
height: fit-content;
margin: auto;
user-select: none;
cursor: pointer;
}
#start-button:hover {
background: #1b1b1b;
}
h1 {
font-size: 72px;
}
canvas {
background-color: white;
}
</style>
<link rel="preload" href="out/combobox-game_bg.wasm" as="fetch" type="application/wasm" crossorigin="">
<link rel="modulepreload" href="out/combobox-game.js">
</head>
<h1>Combobox!</h1>
<div id="start-button-wrapper">
<div id="start-button">Start!</div>
</div>
<script type="module">
import init from './out/combobox-game.js'
document.getElementById('start-button').onclick = function () {
document.getElementById('start-button-wrapper').remove();
init();
};
</script>
</html>