-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.65 KB
/
Copy pathindex.html
File metadata and controls
37 lines (37 loc) · 1.65 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
37
<!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>SolinkCRM 社链CRM — 让销售更简单</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(#solinkcrm-load)"/>
<path d="M8 12h16v2H8zM8 16h12v2H8zM8 20h14v2H8z" fill="white" opacity="0.6"/>
<circle cx="22" cy="22" r="5" fill="white" opacity="0.9"/>
<path d="M20.5 22l1 1 2.5-2.5" stroke="url(#solinkcrm-load)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
<defs>
<linearGradient id="solinkcrm-load" x1="0" y1="0" x2="32" y2="32">
<stop offset="0%" stop-color="#4F46E5"/>
<stop offset="100%" stop-color="#7C3AED"/>
</linearGradient>
</defs>
</svg>
<p style="color: #4F46E5; font-size: 16px; margin-top: 16px; font-family: -apple-system, sans-serif;">社链CRM加载中...</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>