1 Star 0 Fork 1

workits / workits-admin-ui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.html 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
workits 提交于 2023-12-04 16:12 . 添加功能
<!doctype html>
<html lang="zh-Hans-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<title>系统加载中...</title>
<style>
@keyframes loading-spinner-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
#spinner-box {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #f2f3f5;
}
.loading-spinner {
display: inline-block;
border: 4px solid rgba(0, 0, 0, 0.1);
border-left-color: #86909c;
border-bottom-color: #86909c;
border-radius: 50%;
width: 64px;
height: 64px;
animation: loading-spinner-spin 1s linear infinite;
}
.loading-text {
font-size: 14px;
color: #1d2129;
}
</style>
</head>
<body>
<div id="app">
<div id="spinner-box">
<div class="loading-spinner"></div>
<p class="loading-text">正在加载系统资源,请耐心等待...</p>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
1
https://gitee.com/workits/workits-admin-ui.git
git@gitee.com:workits/workits-admin-ui.git
workits
workits-admin-ui
workits-admin-ui
master

搜索帮助