代码更新
This commit is contained in:
90
index.html
90
index.html
@@ -9,6 +9,7 @@
|
||||
name="keywords"
|
||||
/>
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<link rel="stylesheet" href="/gva-loading-boot.css" />
|
||||
<title></title>
|
||||
<style>
|
||||
.transition-colors {
|
||||
@@ -21,95 +22,14 @@
|
||||
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 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>
|
||||
|
||||
Reference in New Issue
Block a user