-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathindex.html
70 lines (68 loc) · 1.87 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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="/favicon.ico"
/>
<title><%- title %></title>
<style>
.b-global-loading {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
}
.b-global-loading .loader {
display: inline-block;
box-sizing: border-box;
width: 200px;
height: 16px;
border: 1px solid #eee;
border-radius: 4px;
background-color: #fff;
background-image: linear-gradient(
45deg,
#ffd700 25%,
transparent 25%,
transparent 50%,
#ffd700 50%,
#ffd700 75%,
transparent 75%,
transparent
);
background-size: 1em 1em;
font-size: 30px;
animation: barStripe 0.8s linear infinite;
}
@keyframes barStripe {
0% {
background-position: 1em 0;
}
100% {
background-position: 0 0;
}
}
</style>
<!-- <script src="https://tencentcos-res.hsslive.cn/npm/[email protected]/index.min.js"></script> -->
<!-- <script src="https://tencentcos-res.hsslive.cn/npm/@vue/[email protected]/index.min.js"></script> -->
<!-- <script src="https://tencentcos-res.hsslive.cn/npm/[email protected]/index.iife.min.js"></script> -->
<!-- <script src="https://tencentcos-res.hsslive.cn/npm/[email protected]/vue.global.min.js"></script> -->
<!-- <script src="https://tencentcos-res.hsslive.cn/npm/[email protected]/vue-router.global.min.js"></script> -->
</head>
<body>
<div id="app"></div>
<script
type="module"
src="/src/main.ts"
></script>
<div class="b-global-loading">
<span class="loader"></span>
</div>
</body>
</html>