File size: 14,494 Bytes
9aa4a82 |
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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Streamer Overlay</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@500;700&display=swap');
:root {
--neon-cyan: #0ff0fc;
--neon-pink: #ff2ced;
--neon-purple: #9600ff;
--dark-bg: #0a0a12;
}
body {
font-family: 'Rajdhani', sans-serif;
background-color: var(--dark-bg);
color: white;
overflow: hidden;
height: 100vh;
width: 100vw;
margin: 0;
padding: 0;
}
.screen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.5s ease;
pointer-events: none;
background: radial-gradient(circle at center, rgba(10, 10, 30, 0.7) 0%, rgba(0, 0, 20, 0.9) 100%);
}
.screen.active {
opacity: 1;
pointer-events: auto;
}
.title {
font-family: 'Orbitron', sans-serif;
font-weight: 700;
font-size: 4rem;
text-transform: uppercase;
letter-spacing: 0.3em;
margin-bottom: 2rem;
text-shadow: 0 0 10px var(--neon-cyan),
0 0 20px var(--neon-pink),
0 0 30px var(--neon-purple);
animation: glow 2s ease-in-out infinite alternate;
}
.subtitle {
font-size: 1.5rem;
max-width: 600px;
text-align: center;
line-height: 1.6;
margin-bottom: 3rem;
color: rgba(255, 255, 255, 0.8);
}
.card {
background: rgba(20, 20, 40, 0.4);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 1rem;
padding: 2rem 3rem;
box-shadow: 0 0 30px rgba(15, 240, 252, 0.2),
inset 0 0 20px rgba(255, 44, 237, 0.1);
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
z-index: -1;
border-radius: 1rem;
opacity: 0.3;
}
.controls {
position: fixed;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 1rem;
z-index: 100;
}
.control-btn {
background: rgba(20, 20, 40, 0.6);
border: 1px solid var(--neon-cyan);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
cursor: pointer;
font-family: 'Orbitron', sans-serif;
font-weight: 500;
letter-spacing: 0.1em;
transition: all 0.3s ease;
box-shadow: 0 0 15px rgba(15, 240, 252, 0.3);
}
.control-btn:hover {
background: rgba(15, 240, 252, 0.2);
box-shadow: 0 0 20px rgba(15, 240, 252, 0.5);
transform: translateY(-2px);
}
.control-btn.active {
background: var(--neon-cyan);
color: var(--dark-bg);
font-weight: 700;
}
.clock {
position: fixed;
top: 2rem;
right: 2rem;
font-family: 'Orbitron', sans-serif;
font-size: 1.2rem;
color: var(--neon-cyan);
text-shadow: 0 0 10px rgba(15, 240, 252, 0.7);
z-index: 100;
}
/* Background effects */
.bg-effect {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.1;
}
.scanlines {
background: linear-gradient(
to bottom,
transparent 95%,
rgba(255, 255, 255, 0.05) 96%
);
background-size: 100% 4px;
animation: scanline 8s linear infinite;
}
.noise {
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E");
animation: noise 0.2s infinite;
}
.particles {
position: absolute;
width: 100%;
height: 100%;
}
.particle {
position: absolute;
width: 2px;
height: 2px;
background-color: var(--neon-cyan);
border-radius: 50%;
opacity: 0.5;
animation: float 15s infinite linear;
}
/* Animations */
@keyframes glow {
from {
text-shadow: 0 0 10px var(--neon-cyan),
0 0 20px var(--neon-pink),
0 0 30px var(--neon-purple);
}
to {
text-shadow: 0 0 15px var(--neon-cyan),
0 0 25px var(--neon-pink),
0 0 35px var(--neon-purple);
}
}
@keyframes scanline {
0% {
background-position: 0 0;
}
100% {
background-position: 0 100%;
}
}
@keyframes noise {
0% {
background-position: 0 0;
}
100% {
background-position: 100% 100%;
}
}
@keyframes float {
0% {
transform: translateY(0) translateX(0);
opacity: 0;
}
10% {
opacity: 0.5;
}
90% {
opacity: 0.5;
}
100% {
transform: translateY(-100vh) translateX(20vw);
opacity: 0;
}
}
/* Glitch effect */
.glitch {
position: relative;
}
.glitch::before, .glitch::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.8;
}
.glitch::before {
color: var(--neon-pink);
animation: glitch-effect 3s infinite;
clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
transform: translate(-2px, -2px);
}
.glitch::after {
color: var(--neon-cyan);
animation: glitch-effect 2s infinite reverse;
clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
transform: translate(2px, 2px);
}
@keyframes glitch-effect {
0% {
transform: translate(0);
}
20% {
transform: translate(-3px, 3px);
}
40% {
transform: translate(-3px, -3px);
}
60% {
transform: translate(3px, 3px);
}
80% {
transform: translate(3px, -3px);
}
100% {
transform: translate(0);
}
}
/* Responsive adjustments */
@media (max-width: 768px) {
.title {
font-size: 2.5rem;
letter-spacing: 0.2em;
}
.subtitle {
font-size: 1.2rem;
max-width: 90%;
}
.card {
padding: 1.5rem;
width: 90%;
}
.controls {
flex-direction: column;
bottom: 1rem;
}
}
</style>
</head>
<body>
<!-- Background effects -->
<div class="bg-effect scanlines"></div>
<div class="bg-effect noise"></div>
<div class="particles" id="particles"></div>
<!-- Digital clock -->
<div class="clock" id="clock">00:00:00</div>
<!-- Screens -->
<div class="screen active" id="starting-soon">
<div class="card">
<h1 class="title glitch" data-text="STREAM STARTING SOON">STREAM STARTING SOON</h1>
<p class="subtitle">The stream will begin shortly. Grab some snacks, get comfortable, and prepare for an awesome time!</p>
</div>
</div>
<div class="screen" id="be-right-back">
<div class="card">
<h1 class="title glitch" data-text="BE RIGHT BACK">BE RIGHT BACK</h1>
<p class="subtitle">Taking a quick break! The stream will resume in a few minutes. Stay tuned!</p>
</div>
</div>
<div class="screen" id="stream-ended">
<div class="card">
<h1 class="title glitch" data-text="STREAM ENDED">STREAM ENDED</h1>
<p class="subtitle">Thanks for watching! Follow to get notified when we go live next time. See you soon!</p>
</div>
</div>
<!-- Controls -->
<div class="controls">
<button class="control-btn active" data-screen="starting-soon">1. Starting Soon</button>
<button class="control-btn" data-screen="be-right-back">2. Be Right Back</button>
<button class="control-btn" data-screen="stream-ended">3. Stream Ended</button>
</div>
<script>
// Screen switching
const screens = document.querySelectorAll('.screen');
const controlBtns = document.querySelectorAll('.control-btn');
function switchScreen(screenId) {
screens.forEach(screen => {
screen.classList.remove('active');
if (screen.id === screenId) {
screen.classList.add('active');
}
});
controlBtns.forEach(btn => {
btn.classList.remove('active');
if (btn.dataset.screen === screenId) {
btn.classList.add('active');
}
});
}
controlBtns.forEach(btn => {
btn.addEventListener('click', () => {
switchScreen(btn.dataset.screen);
});
});
// Keyboard shortcuts
document.addEventListener('keydown', (e) => {
if (e.key === '1') switchScreen('starting-soon');
if (e.key === '2') switchScreen('be-right-back');
if (e.key === '3') switchScreen('stream-ended');
});
// Digital clock
function updateClock() {
const now = new Date();
const hours = now.getHours().toString().padStart(2, '0');
const minutes = now.getMinutes().toString().padStart(2, '0');
const seconds = now.getSeconds().toString().padStart(2, '0');
document.getElementById('clock').textContent = `${hours}:${minutes}:${seconds}`;
}
setInterval(updateClock, 1000);
updateClock();
// Create particles
function createParticles() {
const particlesContainer = document.getElementById('particles');
const particleCount = 50;
for (let i = 0; i < particleCount; i++) {
const particle = document.createElement('div');
particle.classList.add('particle');
// Random position
const posX = Math.random() * 100;
const posY = Math.random() * 100;
// Random size
const size = Math.random() * 3 + 1;
// Random animation duration
const duration = Math.random() * 20 + 10;
// Random delay
const delay = Math.random() * 10;
particle.style.left = `${posX}vw`;
particle.style.top = `${posY}vh`;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
particle.style.animationDuration = `${duration}s`;
particle.style.animationDelay = `-${delay}s`;
// Random color
const colors = ['var(--neon-cyan)', 'var(--neon-pink)', 'var(--neon-purple)'];
const randomColor = colors[Math.floor(Math.random() * colors.length)];
particle.style.backgroundColor = randomColor;
particlesContainer.appendChild(particle);
}
}
createParticles();
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=sh20raj/stream" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |