-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (110 loc) · 3.06 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="theme-color" content="#f0f0f0" />
<meta name="msapplication-TileColor" content="#000000" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<title>Newpod</title>
<style>
html,
body {
margin: 0;
padding: 0;
box-sizing: border-box;
background: rgb(240, 240, 240);
}
</style>
</head>
<body>
<div id="app">
<style>
@keyframes rotateAni {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes transAni {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.rotateAnimate {
animation: rotateAni 2000ms cubic-bezier(1, 0.17, 0.34, 0.97) 500ms
infinite forwards;
}
.loadingWrapper {
opacity: 0;
animation: transAni 50ms ease-in-out 450ms forwards;
width: 100%;
min-height: 99vh;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
}
.loadingOuter {
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 32px;
height: 32px;
box-sizing: border-box;
transition: all 600ms;
}
.loading {
position: relative;
width: 32px;
height: 32px;
box-sizing: border-box;
margin: 0;
padding: 0;
border-radius: 50%;
background-color: hsl(0, 0%, 100%);
box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.loading::before {
content: '';
position: absolute;
top: 4px;
left: 11px;
width: 11px;
height: 8px;
border-radius: 5px;
background-color: hsl(0, 0%, 85%);
}
.tipText {
font-size: 32px;
line-height: 32px;
padding-right: 12px;
font-weight: bolder;
color: #fff;
text-shadow: rgba(0, 0, 0, 0.1) 1px 1px 15px;
}
</style>
<div class="loadingWrapper">
<div class="tipText">LOADING</div>
<div class="loadingOuter">
<div class="loading rotateAnimate"></div>
</div>
</div>
</div>
<div id="global-message"></div>
<script type="module" src="/src/root.tsx"></script>
</body>
</html>