-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (79 loc) · 2.17 KB
/
Copy pathindex.html
File metadata and controls
79 lines (79 loc) · 2.17 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/splash-logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CMTrace Open</title>
<style>
#splash {
position: fixed;
inset: 0;
z-index: 99999;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #111;
transition: opacity 0.4s ease-out;
}
#splash.fade-out {
opacity: 0;
pointer-events: none;
}
#splash img {
width: 180px;
height: 180px;
animation: pulse 2s ease-in-out infinite;
}
#splash .title {
margin-top: 24px;
font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 22px;
font-weight: 600;
color: #e0e0e0;
letter-spacing: 0.5px;
}
#splash .subtitle {
margin-top: 8px;
font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 13px;
color: #888;
}
#splash .loader {
margin-top: 32px;
width: 40px;
height: 4px;
background: #333;
border-radius: 2px;
overflow: hidden;
}
#splash .loader-bar {
width: 50%;
height: 100%;
background: #007768;
border-radius: 2px;
animation: slide 1.2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
@keyframes slide {
0% { transform: translateX(-100%); }
50% { transform: translateX(150%); }
100% { transform: translateX(-100%); }
}
</style>
</head>
<body>
<div id="splash">
<img src="/splash-logo.png" alt="CMTrace Open" />
<div class="title">CMTrace Open</div>
<div class="subtitle">Log Viewer & Troubleshooting Tool</div>
<div class="loader"><div class="loader-bar"></div></div>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>