-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.61 KB
/
Copy pathindex.html
File metadata and controls
36 lines (36 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>悦客 — 温暖·愉悦·用心</title>
</head>
<body>
<div id="app">
<div id="app-loading" style="display: flex; align-items: center; justify-content: center; height: 100vh; background: #f5f5f5;">
<div style="text-align: center;">
<svg viewBox="0 0 32 32" width="48" height="48" style="animation: pulse 1.5s ease-in-out infinite;">
<rect width="32" height="32" rx="8" fill="url(#joycare-load)"/>
<path d="M16 24s-8-5-8-10.5C8 10.5 10 8 12.5 8c1.6 0 2.8.8 3.5 2 .7-1.2 1.9-2 3.5-2C22 8 24 10.5 24 13.5 24 19 16 24 16 24z" fill="white"/>
<path d="M12 14.5c0 0 1.5 3 4 3s4-3 4-3" stroke="url(#joycare-load)" stroke-width="1.5" stroke-linecap="round" fill="none"/>
<defs>
<linearGradient id="joycare-load" x1="0" y1="0" x2="32" y2="32">
<stop offset="0%" stop-color="#FF6B6B"/>
<stop offset="100%" stop-color="#FFB347"/>
</linearGradient>
</defs>
</svg>
<p style="color: #FF7A5C; font-size: 16px; margin-top: 16px; font-family: -apple-system, sans-serif;">悦客加载中...</p>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
<style>
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.6; transform: scale(0.95); }
}
</style>
</body>
</html>