Files
telangpu 7b61eeb6b8 update
2026-05-07 23:26:41 +08:00

63 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/svg+xml" href="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<style>
#app-loading {
position: fixed;
inset: 0;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
background-color: #ffffff;
}
.loading-shell {
width: auto;
margin: 0;
border-radius: 999px;
background-color: transparent;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
}
.loading-body {
padding: 0;
display: flex;
align-items: center;
justify-content: center;
}
.loading-spinner {
width: 40px;
height: 40px;
border-radius: 50%;
border: 3px solid rgba(0, 0, 0, 0.08);
border-top-color: #1677ff;
animation: loading-spin 0.8s linear infinite;
}
@keyframes loading-spin {
to {
transform: rotate(360deg);
}
}
</style>
<link rel="stylesheet" crossorigin="" href="/Static_zy/static/DryxL-Lc.css">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>