chahuadev-dev-launcher / splash.html
chahuadev's picture
Upload 24 files
b1b7091 verified
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Dev Launcher — Loading</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
width: 100%; height: 100%; overflow: hidden;
background: #09080f;
display: flex; justify-content: center; align-items: center;
font-family: 'Segoe UI', -apple-system, system-ui, sans-serif;
position: relative;
}
.bg-grid {
position: fixed; inset: 0; pointer-events: none;
background-image:
linear-gradient(rgba(124,58,237,0.055) 1px, transparent 1px),
linear-gradient(90deg, rgba(124,58,237,0.055) 1px, transparent 1px);
background-size: 40px 40px;
}
.bg-orb {
position: fixed; inset: 0; pointer-events: none;
background:
radial-gradient(ellipse 600px 300px at 20% 10%, rgba(124,58,237,0.15), transparent 70%),
radial-gradient(ellipse 500px 260px at 85% 90%, rgba(59,130,246,0.09), transparent 70%);
}
.scan {
position: fixed; left: 0; right: 0; height: 2px; top: -2px;
background: linear-gradient(90deg, transparent, rgba(167,139,250,0.7), transparent);
animation: scan 4s linear infinite;
pointer-events: none; z-index: 5;
}
@keyframes scan { to { top: 102% } }
.splash { position: relative; z-index: 10; text-align: center; padding: 0 32px; max-width: 480px; width: 100%; }
.pill {
display: inline-flex; align-items: center; gap: 7px;
padding: 5px 14px 5px 12px; border-radius: 20px;
border: 1px solid rgba(124,58,237,0.42);
background: rgba(124,58,237,0.09);
color: #c4b5fd;
font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
margin-bottom: 18px;
}
.pill svg { width: 11px; height: 11px; flex-shrink: 0; fill: currentColor; }
.title {
font-size: clamp(52px, 14vw, 80px); font-weight: 900; line-height: 1.0;
letter-spacing: -0.03em;
background: linear-gradient(135deg, #c4b5fd 0%, #93c5fd 60%, #bfdbfe 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
margin-bottom: 14px;
}
.subtitle {
font-size: 12px; color: #4a5068; line-height: 1.65;
margin-bottom: 28px; max-width: 340px; margin-left: auto; margin-right: auto;
}
.subtitle strong { color: #7c9eff; -webkit-text-fill-color: #7c9eff; font-weight: 700; }
.prog-wrap { width: 180px; height: 2px; background: rgba(255,255,255,0.05); border-radius: 1px; margin: 0 auto; overflow: hidden; }
.prog-bar { height: 100%; width: 0%; background: linear-gradient(90deg, #7c3aed, #60a5fa); border-radius: 1px; transition: width 0.2s ease; }
.ver { position: fixed; bottom: 14px; right: 16px; font-size: 10px; color: #252830; }
</style></head>
<body>
<div class="bg-grid"></div>
<div class="bg-orb"></div>
<div class="scan"></div>
<div class="splash">
<div class="pill">
<svg viewBox="0 0 24 24"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/></svg>
OPEN SOURCE &middot; FREE FOREVER
</div>
<div class="title">Dev Launcher</div>
<div class="subtitle">
A <strong>portable command runner</strong> for developers.<br>
Drop it into any project folder &mdash; it <strong>auto-detects</strong> the project type and gives you every command you need, right there.
</div>
<div class="prog-wrap"><div class="prog-bar" id="prog"></div></div>
</div>
<div class="ver">v1.0.0</div>
<script>
const b = document.getElementById('prog'); let p = 0;
const iv = setInterval(() => { p += Math.random() * 20; if (p > 88) p = 88; b.style.width = p + '%' }, 200);
setTimeout(() => { clearInterval(iv); b.style.width = '100%' }, 3200);
</script>
</body></html>