-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
65 lines (63 loc) · 1.22 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="favicon.ico">
<meta charset="utf-8">
<title> The Pyramid </title>
<style>
body {
background-color: #ffffff;
margin: 0;
overflow: hidden;
}
div{
box-sizing: border-box;
}
#loading-screen{
position: absolute;
z-index: 100;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: #101010;
padding-top: 30vh;
user-select: none;
}
h2{
text-align: center;
margin-bottom: 20px;
font-size: 40px;
font-family: Monospace;
letter-spacing: 8px;
color: #22CCDD;
text-shadow: 0 0 20px #22DDFF;
}
.ld-bar-container{
position: relative;
margin: 0 auto;
width: 40vw;
height: 30px;
padding: 4px 4px;
border: 4px solid #22CCDD;
}
.ld-bar-progress{
width: 0%;
height: 13px;
background: #22DDFF;
box-shadow: 0 0 40px 6px #22CCDD;
transition: width 1500ms;
}
</style>
</head>
<body>
<div id="loading-screen">
<h2> LOADING... </h2>
<div class="ld-bar-container">
<div class="ld-bar-progress"></div>
</div>
</div>
<canvas id="myCanvas"></canvas>
<script type="module" src="assets/js/Main.js"></script>
</body>
</html>