-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
78 lines (70 loc) · 1.72 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
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/icon.png" />
<title>Laudiolin</title>
<style>
#placeholderBG {
background: #000;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 100000;
}
#placeholderBG img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 100%;
}
.loader, .loader:before, .loader:after {
border-radius: 50%;
width: 2.5em;
height: 2.5em;
animation-fill-mode: both;
animation: bblFadInOut 1.8s infinite ease-in-out;
}
.loader {
color: #FFF;
font-size: 7px;
text-indent: -9999em;
animation-delay: -0.16s;
z-index: 100000;
position: absolute;
top: calc(50% + 40px);
left: 50%;
transform: translate(-50%, -50%);
}
.loader:before,
.loader:after {
content: '';
position: absolute;
top: 0;
}
.loader:before {
left: -3.5em;
animation-delay: -0.32s;
}
.loader:after {
left: 3.5em;
}
@keyframes bblFadInOut {
0%, 80%, 100% { box-shadow: 0 2.5em 0 -1.3em }
40% { box-shadow: 0 2.5em 0 0 }
}
</style>
</head>
<body>
<div id="placeholderBG">
<img src="/launch_screen.png" alt="placeholderBG" draggable="false" />
</div>
<span class="loader"></span>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>