-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsplashscreen.html
54 lines (52 loc) · 1.76 KB
/
splashscreen.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="stylesheet" href="/src/styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Loading Screen</title>
<style>
:root {
background-color: #1c1c1c;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
50% {
transform: rotate(180deg);
}
}
</style>
</head>
<body>
<svg
style="
position: fixed;
left: 45%;
top: 35%;
-webkit-transform: translateY(25%);
-ms-transform: translateY(25%);
-webkit-transform: translateX(25%);
-ms-transform: translateX(-45%);
transform: translateX(-45%);
transform: translateY(25%);
animation: spin 2s linear infinite;
"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width="120"
height="120"
preserveAspectRatio="xMaxYMax meet"
>
<path
d="M18.364 5.63604L16.9497 7.05025C15.683 5.7835 13.933 5 12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19C15.866 19 19 15.866 19 12H21C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C14.4853 3 16.7353 4.00736 18.364 5.63604Z"
fill="rgba(0,123,255,1)"
></path>
</svg>
</body>
</html>