-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
61 lines (53 loc) · 1.32 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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="伍嘉贤(Jason Ng)的网络档案页面,包含联系方式、网络踪迹等。" />
<title>Jason Ng、阿禅与伍嘉贤的网络档案</title>
<link rel="icon" href="logo.png">
<link rel="icon" type="image/svg+xml" href="favicon.ico">
<style>
.jn-spinner {
border: 4px solid rgb(115, 17, 145);
width: 20px;
height: 20px;
border-radius: 50%;
border-left-color: transparent;
animation: spin 1s linear infinite;
}
.jn-loading {
margin-top: 30vh;
display: flex;
flex-direction: column;
align-items: center;
}
.jn-spinner-text {
margin-top: 10px;
text-align: center;
}
.jn-spinner-text p {
font-size: 14px;
color: #777;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="jn-loading" class="jn-loading">
<div class="jn-spinner "></div>
<div class="jn-spinner-text">
<p>努力加载中...</p>
</div>
</div>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>