-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Catan Crafting</title>
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
<style>
body {
margin: 0;
overflow: hidden;
width: 100%;
height: 100%;
}
canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}
#background-container {
position: fixed;
width: 100%;
height: 100%;
z-index: -1;
}
</style>
</head>
<body>
<div id="background-container"></div>
<script type="module" src="./src/main.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta/dist/vanta.waves.min.js"></script>
<script>
// Create a Vanta.js background within the background-container
VANTA.WAVES({
mouseControls: true,
touchControls: true,
zoom: 0.75,
shininess: 50,
el: "#background-container"
});
</script>
</body>
</html>