-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
104 lines (86 loc) · 2.28 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/Fav.png" />
<meta name="description" content="Top 100 Coders 2024" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Top 100 Coders 2024</title>
<link rel="apple-touch-icon" href="/Fav.png" />
<meta name="keywords"
content="Top 100 Coders 2024">
<meta name="robots" content="index, follow">
<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>
<style>
#overlay {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
background-color: #000000;
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;
}
.loader {
width: 12px;
height: 12px;
border-radius: 50%;
display: block;
margin: 15px auto;
position: relative;
color: #ffffff;
box-sizing: border-box;
animation: animloader 2s linear infinite;
}
@keyframes animloader {
0% {
box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 -2px;
}
25% {
box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 2px;
}
50% {
box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 2px, -38px 0 0 -2px;
}
75% {
box-shadow: 14px 0 0 2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 -2px;
}
100% {
box-shadow: 14px 0 0 -2px, 38px 0 0 2px, -14px 0 0 -2px, -38px 0 0 -2px;
}
}
</style>
<script>
$(function () {
var timer = setTimeout(function () {
$('#overlay').hide();
}, 5000);
$(window).on('load', function () {
clearTimeout(timer);
$('#overlay').hide();
});
});
</script>
</head>
<body>
<div id="overlay">
<span class="loader"></span>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>