-
Notifications
You must be signed in to change notification settings - Fork 224
/
Copy pathindex.html
53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/images/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>大型风力发电机监控平台</title>
<style>
* {
padding: 0;
margin: 0;
list-style: none;
}
#app {
width: 100;
height: 100%;
overflow: hidden;
}
.app-loading {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
background-color: #303133;
}
.app-loading-title {
margin-top: 10px;
font-size: 16px;
font-weight: bold;
color: #fff;
}
.app-loading-subtitle {
margin-top: 10px;
font-size: 12px;
color: #fff;
}
</style>
</head>
<body>
<div id="app">
<div class="app-loading">
<img class="app-loading-icon" src="/images/spin.svg" alt="" />
<div class="app-loading-title">正在加载资源</div>
<div class="app-loading-subtitle">
初次加载资源可能需要较长时间,请耐心等待
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>