-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 917 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 917 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Island</title>
<style>
h1::selection {
color: none;
background: none;
}
</style>
</head>
<body>
<h1 id="loading" style="color:white;position:absolute;left:50%;top:50%;transform:translate(-50%, -100%);font-family:fantasy;z-index: 30;">Loading...</h1>
<img id="background" src="background.png" style="width: max(1425px, 100%);">
<script async src="https://unpkg.com/es-module-shims@1.3.6/dist/es-module-shims.js"></script>
<script type="importmap">
{ "imports": { "three": "https://cdn.skypack.dev/three@0.138.0" } }
</script>
<script src="noise.js"></script>
<script type="module" src="main.js"></script>
</body>
</html>