-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
115 lines (109 loc) · 2.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html class="vcs-ui" lang="en">
<head>
<title>VC Map</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link
class="vcs-favicon"
rel="icon"
type="image/png"
href="./assets/favicon-32-4c4ce5df.png"
sizes="32x32"
>
<link
class="vcs-favicon"
rel="icon"
type="image/png"
href="./assets/favicon-128-4c4ce5df.png"
sizes="128x128"
>
<link
class="vcs-favicon"
rel="icon"
type="image/png"
href="./assets/favicon-180-4c4ce5df.png"
sizes="180x180"
>
<link
class="vcs-favicon"
rel="icon"
type="image/png"
href="./assets/favicon-192-4c4ce5df.png"
sizes="192x192"
>
<link class="vcs-favicon" rel="icon" type="image/svg+xml" href="./assets/favicon-4c4ce5df.svg">
<link
rel="stylesheet"
href="./assets/@mdi/font/css/materialdesignicons.min.css"
>
<style>
#loading-wrapper {
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
#loading-text {
display: block;
position: absolute;
top: 50%;
left: 50%;
color: grey;
width: 100px;
height: 30px;
margin: -7px 0 0 -45px;
text-align: center;
font-family: 'PT Sans Narrow', sans-serif;
font-size: 20px;
}
#loading-content {
display: block;
position: relative;
left: 50%;
top: 50%;
width: 170px;
height: 170px;
margin: -85px 0 0 -85px;
}
#loading-content {
border: 3px solid transparent;
border-top-color: grey;
border-bottom-color: grey;
border-radius: 50%;
-webkit-animation: loader 2s linear infinite;
-moz-animation: loader 2s linear infinite;
-o-animation: loader 2s linear infinite;
animation: loader 2s linear infinite;
}
@keyframes loader {
0% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
</style>
</head>
<body style="height: 100vh; margin: 0;">
<noscript>
<strong>...</strong>
</noscript>
<div id="app">
<div id="loading-wrapper">
<div id="loading-text">LOADING</div>
<div id="loading-content"></div>
</div>
</div>
<script type="module">
import { initAppFromAppConfig } from '@vcmap/ui';
initAppFromAppConfig('#app', 'app.config.json');
</script>
</body>
</html>