1
0
Fork 0
mirror of https://github.com/silenty4ng/k5web synced 2025-04-15 11:11:43 +00:00
This commit is contained in:
Silent YANG 2024-07-06 15:51:52 +08:00
parent 8eb67e1d62
commit 53d42d6314

View file

@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="zh-cmn">
<head>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>K5Web</title>
@ -33,12 +34,14 @@
z-index: 9999;
overflow: hidden;
}
.loading-wrapper {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -100%);
}
.loading-dot {
animation: antRotate 1.2s infinite linear;
transform: rotate(45deg);
@ -49,6 +52,7 @@
height: 64px;
box-sizing: border-box;
}
.loading-dot i {
width: 22px;
height: 22px;
@ -61,45 +65,53 @@
opacity: 0.3;
animation: antSpinMove 1s infinite linear alternate;
}
.loading-dot i:nth-child(1) {
top: 0;
left: 0;
}
.loading-dot i:nth-child(2) {
top: 0;
right: 0;
-webkit-animation-delay: 0.4s;
animation-delay: 0.4s;
}
.loading-dot i:nth-child(3) {
right: 0;
bottom: 0;
-webkit-animation-delay: 0.8s;
animation-delay: 0.8s;
}
.loading-dot i:nth-child(4) {
bottom: 0;
left: 0;
-webkit-animation-delay: 1.2s;
animation-delay: 1.2s;
}
@keyframes antRotate {
to {
-webkit-transform: rotate(405deg);
transform: rotate(405deg);
}
}
@-webkit-keyframes antRotate {
to {
-webkit-transform: rotate(405deg);
transform: rotate(405deg);
}
}
@keyframes antSpinMove {
to {
opacity: 1;
}
}
@-webkit-keyframes antSpinMove {
to {
opacity: 1;
@ -107,17 +119,17 @@
}
</style>
<script src="serial.js"></script>
</head>
<body>
</head>
<body>
<div id="app">
<div id="loading-mask">
<div class="loading-wrapper">
<span class="loading-dot loading-dot-spin"
><i></i><i></i><i></i><i></i
></span>
<span class="loading-dot loading-dot-spin"><i></i><i></i><i></i><i></i></span>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</body>
</html>