37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="zh-cn" class="transition-colors">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<link rel="stylesheet" href="/gva-loading-boot.css" />
|
|
<title></title>
|
|
<style>
|
|
.transition-colors {
|
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transition-duration: 150ms;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
background: #020617;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="gva-loading-box" class="gva-loading-box">
|
|
<div class="gva-loading-panel">
|
|
<div class="gva-loading-ring"></div>
|
|
<div class="gva-loading-text">系统正在加载中,请稍候...</div>
|
|
</div>
|
|
</div>
|
|
<div id="app"></div>
|
|
<script type="module" src="./src/main.js"></script>
|
|
<!-- 高德地图CDN -->
|
|
<!-- 使用高德地图开放平台提供的测试密钥,用于演示 -->
|
|
<script src="https://webapi.amap.com/maps?v=2.0&key=4a22b7d5fc94d47b91e82fb75a848699"></script>
|
|
</body>
|
|
</html>
|