-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
52 lines (47 loc) · 1.08 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>随机生成虚假数据</title>
<style>
body {
margin: 0;
}
.app-error-tip {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #888;
height: 80vh;
opacity: 0;
font-size: 16px;
animation: show 3s;
animation-fill-mode: forwards;
}
@keyframes show {
0% {
opacity: 0;
}
80% {
opacity: 0;
}
to {
opacity: 1;
}
}
</style>
</head>
<body>
<div id="app">
<div class="app-error-tip">
<p>如果你看到这段内容,可能是程序出现BUG,请联系作者反馈</p>
<p>作者微信 hexiyangwxh</p>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>