代码拉取完成,页面将自动刷新
同步操作将从 JGDT/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>
<%= title %>
</title>
</head>
<body>
<div id="app">
<style>
.app-loading {
background: #222;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
h2 {
color: #ccc;
margin: 0;
font: .8em verdana;
text-transform: uppercase;
letter-spacing: .1em;
}
/*
* Loading Dots
* Can we use pseudo elements here instead :after?
*/
.loading span {
display: inline-block;
vertical-align: middle;
width: .6em;
height: .6em;
margin: .19em;
background: #007DB6;
border-radius: .6em;
-webkit-animation: loading 1s infinite alternate;
animation: loading 1s infinite alternate;
}
/*
* Dots Colors
* Smarter targeting vs nth-of-type?
*/
.loading span:nth-of-type(2) {
background: #008FB2;
-webkit-animation-delay: 0.2s;
animation-delay: 0.2s;
}
.loading span:nth-of-type(3) {
background: #009B9E;
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
.loading span:nth-of-type(4) {
background: #00A77D;
-webkit-animation-delay: 0.6s;
animation-delay: 0.6s;
}
.loading span:nth-of-type(5) {
background: #00B247;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
.loading span:nth-of-type(6) {
background: #5AB027;
-webkit-animation-delay: 1.0s;
animation-delay: 1.0s;
}
.loading span:nth-of-type(7) {
background: #A0B61E;
-webkit-animation-delay: 1.2s;
animation-delay: 1.2s;
}
/*
* Animation keyframes
* Use transition opacity instead of keyframes?
*/
@-webkit-keyframes loading {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes loading {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
<div class="app-loading">
<div class="app-loading-wrap">
<div class="loading">
<h2>
<%= title %>
</h2>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。