代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>后台管理系统</title>
<style>
.app-loading {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
background: #f0f2f5;
z-index: 9999;
}
.app-loading .app-loading-wrap {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.app-loading .dots {
display: flex;
padding: 98px;
justify-content: center;
}
.app-loading .dots span {
display: inline-block;
margin: 0 5px;
width: 10px;
height: 10px;
border-radius: 50%;
background: var(--el-color-primary, #409eff);
animation: fade 1s infinite ease-in-out alternate;
}
.app-loading .dots span:nth-child(2) {
animation-delay: 0.2s;
}
.app-loading .dots span:nth-child(3) {
animation-delay: 0.4s;
}
.app-loading .title {
font-size: 20px;
color: #333;
text-align: center;
margin-top: 30px;
}
@keyframes fade {
from {
opacity: 1;
transform: scale(1);
}
to {
opacity: 0.2;
transform: scale(0.75);
}
}
</style>
</head>
<body>
<div id="app">
<div class="app-loading">
<div class="app-loading-wrap">
<div class="dots">
<span></span>
<span></span>
<span></span>
</div>
<div class="title">正在加载中...</div>
</div>
</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。