122 lines
3.6 KiB
HTML
122 lines
3.6 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" />
|
|
<meta
|
|
content="Gin,Vue,Admin.Gin-Vue-Admin,GVA,gin-vue-admin,后台管理框架,vue后台管理框架,gin-vue-admin文档,gin-vue-admin首页,gin-vue-admin"
|
|
name="keywords"
|
|
/>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<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;
|
|
}
|
|
#gva-loading-box {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
overflow: hidden;
|
|
background:
|
|
radial-gradient(circle at 50% 40%, rgba(0, 212, 255, 0.1), transparent 38%),
|
|
radial-gradient(circle at 12% 10%, rgba(0, 212, 255, 0.12), transparent 28%),
|
|
linear-gradient(135deg, #020617 0%, #07111f 52%, #0f172a 100%);
|
|
}
|
|
#gva-loading-panel {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 14px;
|
|
min-width: 148px;
|
|
padding: 24px 28px 20px;
|
|
border: 1px solid rgba(0, 212, 255, 0.22);
|
|
border-radius: 18px;
|
|
background: linear-gradient(145deg, rgba(10, 28, 54, 0.96), rgba(4, 14, 30, 0.92));
|
|
box-shadow:
|
|
0 22px 48px rgba(0, 0, 0, 0.34),
|
|
0 0 28px rgba(0, 212, 255, 0.1),
|
|
inset 0 0 28px rgba(0, 212, 255, 0.05);
|
|
}
|
|
#loading-ring {
|
|
position: relative;
|
|
width: 44px;
|
|
height: 44px;
|
|
}
|
|
#loading-ring::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
border: 2px solid rgba(0, 212, 255, 0.12);
|
|
border-top-color: #00d4ff;
|
|
border-right-color: rgba(103, 232, 249, 0.55);
|
|
border-radius: 50%;
|
|
animation: gvaBootSpin 0.85s linear infinite;
|
|
box-shadow: 0 0 18px rgba(0, 212, 255, 0.22);
|
|
}
|
|
#loading-ring::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: -6px;
|
|
border: 1px dashed rgba(0, 212, 255, 0.16);
|
|
border-radius: 50%;
|
|
animation: gvaBootOrbit 2.4s linear infinite;
|
|
}
|
|
#loading-text {
|
|
margin: 0;
|
|
color: #dceeff;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.1em;
|
|
animation: gvaBootPulse 1.6s ease-in-out infinite;
|
|
}
|
|
@keyframes gvaBootSpin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
@keyframes gvaBootOrbit {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
@keyframes gvaBootPulse {
|
|
0%,
|
|
100% {
|
|
opacity: 0.72;
|
|
}
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="gva-loading-box">
|
|
<div id="gva-loading-panel">
|
|
<div id="loading-ring"></div>
|
|
<div id="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>
|