-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 878 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 878 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
<!DOCTYPE html>
<html>
<head>
<title>Your DM is loading</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bilbo+Swash+Caps&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<canvas width="100%" height="100%" id="canvas">
</canvas>
<canvas width="100%" height="100%" id="vignette" class="vignette">
</canvas>
<canvas width="100%" height="100%" id="text" class="text">
</canvas>
</body>
<script type="module">
import {start} from "./loadingscreen.js";
window.addEventListener('resize', function () {
"use strict";
window.location.reload();
});
window.requestAnimationFrame(start);
</script>
</html>