-
Notifications
You must be signed in to change notification settings - Fork 33
/
index.html
74 lines (64 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
#overlay {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
background-color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 9999;
left: 0;
gap: 10px;
}
#overlay::-webkit-scrollbar {
display: none;
color: white;
}
#overlay img {
width: 300px;
height: auto;
}
.progress {
width: 100.8px;
height: 16.8px;
border-radius: 16.8px;
background: repeating-linear-gradient(135deg, #FBBA16 0 8.4px, rgba(251, 186, 22, 0.5) 0 16.8px) left/0% 100% no-repeat,
repeating-linear-gradient(135deg, rgba(71, 75, 255, 0.2) 0 8.4px, rgba(71, 75, 255, 0.1) 0 16.8px) left/100% 100%;
animation: progress-p43u5e 3s infinite;
}
@keyframes progress-p43u5e {
100% {
background-size: 100% 100%;
}
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.js"></script>
<script>
function hideOverlay() {
$('#overlay').hide();
}
$(window).on('load', function () {
hideOverlay();
});
setTimeout(hideOverlay, 3000);
</script>
</head>
<body>
<div id="overlay">
<div class="progress">
</div>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>