代码拉取完成,页面将自动刷新
同步操作将从 zhaoey/eu-vue3 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<!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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。