前端: 添加加载页面

This commit is contained in:
Frontend Developer 2026-03-10 09:57:55 +00:00
parent 530fd474e2
commit 4247946a1e

View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>加载中...</title>
<style>
body { font-family: -apple-system, sans-serif; margin: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #f0f2f5; }
.spinner { width: 40px; height: 40px; border: 4px solid #f3f3f3; border-top: 4px solid #1890ff; border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); }
</style>
</head>
<body>
<div class="spinner"></div>
</body>
</html>