1 Star 0 Fork 19

wenbingyin/eu-vue3

forked from zhaoey/eu-vue3 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 2.58 KB
一键复制 编辑 原始数据 按行查看 历史
zhaoey 提交于 2023-10-20 23:18 . 第一次提交
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>eu-vue3</title>
<style>
/* 深色模式 */
@media (prefers-color-scheme: dark) {
#loading-wrapper {
background: #191E32 !important;
}
.loading-text {
color: #8F9BB3 !important;
}
}
#loading-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99999;
background: #f7f8fa;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#loading-wrapper .loading-text {
color: #606266;
font-size: 19px;
margin-top: 30px;
}
#loading-wrapper .loading {
width: 100px;
height: 100px;
border-radius: 50%;
display: inline-block;
position: relative;
border: 3px solid;
border-color: #155bd4 #155bd4 transparent transparent;
animation: rotation 1s linear infinite;
}
#loading-wrapper .loading:after,
#loading-wrapper .loading:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
border: 3px solid;
border-color: transparent transparent #ff3d00 #ff3d00;
width: 80px;
height: 80px;
border-radius: 50%;
-webkit-animation: rotationBack 0.5s linear infinite;
animation: rotationBack 0.5s linear infinite;
transform-origin: center center;
}
#loading-wrapper .loading:before {
width: 60px;
height: 60px;
border-color: #155bd4 #155bd4 transparent transparent;
-webkit-animation: rotation 1.5s linear infinite;
animation: rotation 1.5s linear infinite;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes rotationBack {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-360deg);
}
}
</style>
</head>
<body class="eu-ui">
<div id="app">
<div id="loading-wrapper">
<div class="loading"></div>
<div class="loading-text">正在加载系统资源,请耐心等待</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/wenbingyin/eu-vue3.git
git@gitee.com:wenbingyin/eu-vue3.git
wenbingyin
eu-vue3
eu-vue3
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385