41 lines
1.4 KiB
HTML
41 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Loading</title>
|
|
<style>
|
|
html, body { height: 100%; }
|
|
body {
|
|
margin: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #000000;
|
|
color: #ffffff;
|
|
font-family: "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", sans-serif;
|
|
}
|
|
.wrap { display: flex; flex-direction: column; align-items: center; }
|
|
.spinner {
|
|
width: 64px;
|
|
height: 64px;
|
|
border-radius: 50%;
|
|
background: conic-gradient(from 0deg, #ffffff 0deg, rgba(255,255,255,0.15) 90deg, rgba(255,255,255,0.15) 360deg);
|
|
-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 calc(100% - 8px));
|
|
mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 calc(100% - 8px));
|
|
animation: spin 1s linear infinite;
|
|
margin-bottom: 16px;
|
|
}
|
|
@keyframes spin { to { transform: rotate(360deg); } }
|
|
.text { font-size: 30px; opacity: 0.9; letter-spacing: 0.5px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<div class="spinner"></div>
|
|
<div class="text">系统启动中...</div>
|
|
</div>
|
|
</body>
|
|
</html>
|