-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
62 lines (62 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>h5-factory</title>
<meta name="keywords" content="h5-factory">
<meta name="description" content="h5-factory,html5-factory,html-factory,html5-editor,html-editor,vuejs,vuejs2,vue-admin">
<style type="text/css">
.svg-icon {
width: 40px;
height: 40px;
stroke: #343640;
stroke-width: 2;
stroke-linecap: round;
}
.svg-icon .path {
fill: none;
}
.init-box {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.init-box .box-loading {
width: 128px;
height: 128px;
background: none;
animation: loading-rotate 0.8s linear infinite;
}
@keyframes loading-rotate {
to {
transform: rotate(1turn)
}
}
@-webkit-keyframes loading-rotate {
to {
transform: rotate(1turn)
}
}
.init-box .init-tips {
color: #8B90A0;
}
</style>
</head>
<body>
<div id="app">
<div class="init-box">
<svg viewBox="0 0 50 50" class="svg-icon box-loading">
<circle cx="25" cy="25" r="20" fill="none" stroke="#F2F2F2" class="path"></circle>
<circle cx="25" cy="25" r="20" fill="none" stroke="#24292e" stroke-dasharray="60,150" class="path"></circle>
</svg>
<p class="init-tips">初次加载,请耐心等待...</p>
</div>
</div>
</body>
</html>