-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathindex.html
63 lines (62 loc) · 1.55 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
<!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>MF-UavMonitor</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;
}
body[arco-theme='dark'] {
.leaflet-layer {
filter: grayscale(100) invert(100);
}
}
.leaflet-div-icon {
background-color: transparent !important;
border: unset !important;
}
</style>
</head>
<body arco-theme="dark">
<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>