mirror of
https://github.com/Pandipipas/scoreko-electron-dev.git
synced 2026-06-05 21:22:07 +00:00
101 lines
2.3 KiB
HTML
101 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Scoreko</title>
|
|
<style>
|
|
body {
|
|
background-color: #121212;
|
|
color: #f5f5f5;
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
user-select: none;
|
|
}
|
|
.loading-page {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
.loading-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.q-spinner {
|
|
animation: q-spin 2s linear infinite;
|
|
transform-origin: center center;
|
|
width: 50px;
|
|
height: 50px;
|
|
color: #1976d2;
|
|
}
|
|
.q-spinner circle {
|
|
stroke-dasharray: 1, 200;
|
|
stroke-dashoffset: 0;
|
|
animation: q-spin-dash 1.5s ease-in-out infinite;
|
|
stroke-linecap: round;
|
|
}
|
|
@keyframes q-spin {
|
|
100% { transform: rotate(360deg); }
|
|
}
|
|
@keyframes q-spin-dash {
|
|
0% {
|
|
stroke-dasharray: 1, 200;
|
|
stroke-dashoffset: 0;
|
|
}
|
|
50% {
|
|
stroke-dasharray: 89, 200;
|
|
stroke-dashoffset: -35px;
|
|
}
|
|
100% {
|
|
stroke-dasharray: 89, 200;
|
|
stroke-dashoffset: -124px;
|
|
}
|
|
}
|
|
.quote {
|
|
max-width: 520px;
|
|
margin-top: 16px;
|
|
font-size: 1rem;
|
|
line-height: 1.75rem;
|
|
font-weight: 400;
|
|
}
|
|
.status {
|
|
font-style: italic;
|
|
opacity: 0.7;
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
}
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="loading-page">
|
|
<div class="loading-content">
|
|
<svg class="q-spinner" viewBox="25 25 50 50">
|
|
<circle cx="50" cy="50" r="20" fill="none" stroke="currentColor" stroke-width="5" stroke-miterlimit="10"></circle>
|
|
</svg>
|
|
<div class="quote" id="quoteText"></div>
|
|
<div class="status">Loading...</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
const loadQuotes = [
|
|
"Complaining about Paul's damage",
|
|
'Nerfing Gigas',
|
|
'Mashing hopkick',
|
|
'Sidestepping your electric',
|
|
'Punishing hellsweep with 1,1,2',
|
|
'Emailing Harada',
|
|
];
|
|
const randomIndex = Math.floor(Math.random() * loadQuotes.length);
|
|
document.getElementById('quoteText').textContent = loadQuotes[randomIndex];
|
|
</script>
|
|
</body>
|
|
</html>
|