-
Notifications
You must be signed in to change notification settings - Fork 43
/
index.html
65 lines (59 loc) · 1.48 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 lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<base target="_blank" />
<title>me-admin</title>
<style>
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="app">
<style>
.sk-flow {
width: 50px;
height: 50px;
display: flex;
justify-content: space-between;
}
.sk-flow-dot {
width: 25%;
height: 25%;
background-color: #79bbff;
border-radius: 50%;
animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both;
}
.sk-flow-dot:nth-child(1) {
animation-delay: -0.3s;
}
.sk-flow-dot:nth-child(2) {
animation-delay: -0.15s;
}
@keyframes sk-flow {
0%,
80%,
100% {
transform: scale(0.3);
}
40% {
transform: scale(1);
}
}
</style>
<div style="width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center">
<div class="sk-flow">
<div class="sk-flow-dot"></div>
<div class="sk-flow-dot"></div>
<div class="sk-flow-dot"></div>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>