feat(splashscreen): implement a splash screen for application startup

This commit introduces a splash screen that enhances the user experience during application startup. It includes a new HTML file for the splash screen layout and a corresponding icon. The main application logic has been updated to close the splash screen once the main application is ready.

- Added a splash screen HTML and icon for improved visual feedback
- Updated main application logic to manage splash screen visibility
- Enhanced title bar branding with an image instead of SVG
This commit is contained in:
Christoph Brandau
2026-07-08 15:16:51 +02:00
parent 61a22987ba
commit cc179e9eef
7 changed files with 330 additions and 23 deletions
+276
View File
@@ -0,0 +1,276 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitLite</title>
<style>
:root {
color-scheme: dark;
--ink: #f3f5ff;
--muted: #9aa3c5;
--purple: #9b70ff;
--orange: #ff6d26;
--panel: rgba(15, 18, 31, 0.9);
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
box-sizing: border-box;
}
html,
body {
width: 100%;
height: 100%;
margin: 0;
overflow: hidden;
background: #050712;
}
body {
display: grid;
place-items: center;
background:
radial-gradient(circle at 50% 38%, rgba(137, 92, 255, 0.22), transparent 36%),
linear-gradient(135deg, #050712 0%, #080b16 48%, #140b18 100%);
}
.grid {
position: fixed;
inset: 0;
opacity: 0.28;
background-image:
linear-gradient(rgba(151, 118, 255, 0.12) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 109, 38, 0.08) 1px, transparent 1px);
background-size: 42px 42px;
mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
animation: grid-drift 10s linear infinite;
}
.splash {
position: relative;
display: grid;
justify-items: center;
gap: 16px;
width: 100vw;
height: 100vh;
align-content: center;
padding: 32px;
border: 0;
border-radius: 0;
background:
linear-gradient(180deg, rgba(23, 26, 43, 0.92), rgba(12, 15, 27, 0.94)),
var(--panel);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
overflow: hidden;
}
.splash::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(110deg, transparent 0%, rgba(160, 124, 255, 0.12) 48%, transparent 54%);
transform: translateX(-100%);
animation: card-scan 2.8s ease-in-out infinite;
}
.mark {
position: relative;
display: grid;
place-items: center;
width: 174px;
height: 174px;
isolation: isolate;
}
.halo {
position: absolute;
inset: 10px;
border: 1px solid rgba(151, 118, 255, 0.25);
border-radius: 36px;
transform: rotate(45deg);
animation: halo-breathe 2.4s ease-in-out infinite;
}
.halo.secondary {
inset: 25px;
border-color: rgba(255, 109, 38, 0.28);
animation-direction: reverse;
}
.traces {
position: absolute;
inset: -18px;
width: 210px;
height: 210px;
overflow: visible;
}
.trace {
fill: none;
stroke-width: 3;
stroke-linecap: round;
stroke-dasharray: 165;
stroke-dashoffset: 165;
filter: drop-shadow(0 0 8px rgba(151, 118, 255, 0.55));
animation: trace-draw 2.6s ease-in-out infinite;
}
.trace.main {
stroke: var(--purple);
}
.trace.branch {
stroke: var(--orange);
animation-delay: 0.28s;
}
.trace.base {
stroke: rgba(255, 255, 255, 0.42);
stroke-dasharray: 128;
stroke-dashoffset: 128;
animation-delay: 0.55s;
}
.icon {
position: relative;
z-index: 1;
width: 136px;
height: 136px;
object-fit: contain;
filter:
drop-shadow(0 18px 24px rgba(0, 0, 0, 0.55))
drop-shadow(0 0 18px rgba(151, 118, 255, 0.3));
animation: icon-float 2.4s ease-in-out infinite;
}
.sheen {
position: absolute;
z-index: 2;
width: 112px;
height: 172px;
border-radius: 50%;
background: linear-gradient(90deg, transparent 8%, rgba(255, 255, 255, 0.18), transparent 72%);
mix-blend-mode: screen;
transform: translateX(-98px) rotate(16deg);
animation: icon-sheen 2.8s ease-in-out infinite;
}
.copy {
position: relative;
display: grid;
gap: 4px;
justify-items: center;
text-align: center;
}
.copy strong {
color: var(--ink);
font-size: 22px;
font-weight: 900;
line-height: 1;
}
.copy span {
color: var(--muted);
font-size: 12.5px;
font-weight: 700;
}
.bar {
position: relative;
width: 230px;
height: 4px;
margin-top: 2px;
overflow: hidden;
border-radius: 999px;
background: rgba(151, 118, 255, 0.14);
}
.bar span {
position: absolute;
inset: 0;
width: 46%;
border-radius: inherit;
background: linear-gradient(90deg, transparent, var(--purple) 40%, var(--orange) 74%, transparent);
box-shadow: 0 0 16px rgba(255, 109, 38, 0.32);
animation: bar-slide 1.35s ease-in-out infinite;
}
@keyframes grid-drift {
to { transform: translate3d(42px, 42px, 0); }
}
@keyframes card-scan {
0%, 34% { transform: translateX(-100%); }
72%, 100% { transform: translateX(100%); }
}
@keyframes icon-float {
0%, 100% { transform: translateY(0) scale(1); }
50% { transform: translateY(-5px) scale(1.015); }
}
@keyframes icon-sheen {
0%, 18% { transform: translateX(-98px) rotate(16deg); opacity: 0; }
44% { opacity: 0.9; }
68%, 100% { transform: translateX(98px) rotate(16deg); opacity: 0; }
}
@keyframes halo-breathe {
0%, 100% { opacity: 0.35; transform: rotate(45deg) scale(0.95); }
50% { opacity: 0.8; transform: rotate(45deg) scale(1.04); }
}
@keyframes trace-draw {
0% { stroke-dashoffset: 165; opacity: 0; }
36% { opacity: 1; }
64%, 100% { stroke-dashoffset: 0; opacity: 0.72; }
}
@keyframes bar-slide {
0% { transform: translateX(-120%); }
100% { transform: translateX(320%); }
}
@media (prefers-reduced-motion: reduce) {
.grid,
.splash::before,
.halo,
.trace,
.icon,
.sheen,
.bar span {
animation: none;
}
.trace {
stroke-dashoffset: 0;
opacity: 0.72;
}
}
</style>
</head>
<body>
<div class="grid" aria-hidden="true"></div>
<main class="splash" role="status" aria-live="polite">
<div class="mark" aria-hidden="true">
<span class="halo"></span>
<span class="halo secondary"></span>
<svg class="traces" viewBox="0 0 220 220">
<path class="trace main" d="M28 154 C72 114, 88 108, 110 110 S156 116, 192 68" />
<path class="trace branch" d="M62 74 C100 88, 126 124, 158 166" />
<path class="trace base" d="M46 180 L174 180" />
</svg>
<img class="icon" src="/splash-icon.png" alt="" />
<span class="sheen"></span>
</div>
<div class="copy">
<strong>GitLite</strong>
<span>Starting workspace</span>
</div>
<div class="bar" aria-hidden="true"><span></span></div>
</main>
</body>
</html>