Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>TMT IN NUMBERS - Matrix Console</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap" rel="stylesheet"> | |
| <style> | |
| @keyframes flicker { | |
| 0% { opacity: 0.8; } | |
| 50% { opacity: 0.95; } | |
| 100% { opacity: 0.8; } | |
| } | |
| @keyframes typing { | |
| from { width: 0 } | |
| to { width: 100% } | |
| } | |
| @keyframes blink-caret { | |
| from, to { border-color: transparent } | |
| 50% { border-color: #00FF00 } | |
| } | |
| .matrix-bg { | |
| background-color: #000000; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .matrix-bg::before { | |
| content: ""; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| background: | |
| radial-gradient(circle at 10% 20%, rgba(0, 255, 0, 0.03) 0%, transparent 2%), | |
| radial-gradient(circle at 90% 30%, rgba(0, 255, 0, 0.02) 0%, transparent 3%), | |
| radial-gradient(circle at 50% 80%, rgba(0, 255, 0, 0.01) 0%, transparent 4%); | |
| animation: flicker 3s infinite alternate; | |
| pointer-events: none; | |
| } | |
| .matrix-cell { | |
| border: 1px solid rgba(0, 255, 0, 0.4); | |
| transition: all 0.3s ease; | |
| } | |
| .matrix-cell:hover { | |
| border-color: rgba(0, 255, 0, 0.8); | |
| box-shadow: 0 0 10px rgba(0, 255, 0, 0.2); | |
| } | |
| .matrix-title { | |
| font-family: 'Space Grotesk', monospace; | |
| color: #00FF00; | |
| overflow: hidden; | |
| white-space: nowrap; | |
| letter-spacing: 0.15em; | |
| animation: | |
| typing 1.5s steps(15, end), | |
| blink-caret 0.75s step-end infinite; | |
| } | |
| .matrix-number { | |
| font-family: 'Space Grotesk', monospace; | |
| color: #00FF00; | |
| font-weight: bold; | |
| overflow: hidden; | |
| white-space: nowrap; | |
| letter-spacing: 0.1em; | |
| } | |
| .matrix-label { | |
| font-family: 'Space Grotesk', monospace; | |
| color: #66FF66; | |
| opacity: 0; | |
| transition: opacity 0.5s ease; | |
| } | |
| .pixel { | |
| position: absolute; | |
| width: 1px; | |
| height: 1px; | |
| background-color: rgba(0, 255, 0, 0.1); | |
| pointer-events: none; | |
| } | |
| </style> | |
| </head> | |
| <body class="matrix-bg min-h-screen flex flex-col items-center justify-center p-4"> | |
| <div class="max-w-4xl w-full"> | |
| <h1 class="matrix-title text-3xl md:text-4xl lg:text-5xl mb-12 text-center">TMT IN NUMBERS</h1> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-6 md:gap-8"> | |
| <!-- First Row --> | |
| <div class="matrix-cell p-6 md:p-8 rounded flex flex-col items-center justify-center" | |
| onmouseenter="animateCell(this)"> | |
| <div class="matrix-number text-5xl md:text-6xl lg:text-7xl mb-2" id="number1"></div> | |
| <div class="matrix-label text-lg md:text-xl lg:text-2xl" id="label1">USD IN MANAGED TRAFFIC</div> | |
| </div> | |
| <div class="matrix-cell p-6 md:p-8 rounded flex flex-col items-center justify-center" | |
| onmouseenter="animateCell(this)"> | |
| <div class="matrix-number text-5xl md:text-6xl lg:text-7xl mb-2" id="number2"></div> | |
| <div class="matrix-label text-lg md:text-xl lg:text-2xl" id="label2">TEAM SPECIALISTS</div> | |
| </div> | |
| <!-- Second Row --> | |
| <div class="matrix-cell p-6 md:p-8 rounded flex flex-col items-center justify-center" | |
| onmouseenter="animateCell(this)"> | |
| <div class="matrix-number text-5xl md:text-6xl lg:text-7xl mb-2" id="number3"></div> | |
| <div class="matrix-label text-lg md:text-xl lg:text-2xl" id="label3">OFFERS ROTATED</div> | |
| </div> | |
| <div class="matrix-cell p-6 md:p-8 rounded flex flex-col items-center justify-center" | |
| onmouseenter="animateCell(this)"> | |
| <div class="matrix-number text-5xl md:text-6xl lg:text-7xl mb-2" id="number4"></div> | |
| <div class="matrix-label text-lg md:text-xl lg:text-2xl" id="label4">TRAFFIC ECOSYSTEMS</div> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| // Create random flickering pixels | |
| function createPixels() { | |
| const container = document.body; | |
| const pixelCount = 100; | |
| for (let i = 0; i < pixelCount; i++) { | |
| const pixel = document.createElement('div'); | |
| pixel.classList.add('pixel'); | |
| // Random position | |
| pixel.style.left = `${Math.random() * 100}%`; | |
| pixel.style.top = `${Math.random() * 100}%`; | |
| // Random animation | |
| pixel.style.animation = `flicker ${2 + Math.random() * 3}s infinite alternate`; | |
| pixel.style.opacity = Math.random() * 0.2; | |
| container.appendChild(pixel); | |
| } | |
| } | |
| // Type out text with random delays between characters | |
| function typeWriter(element, text, speed, delay = 0) { | |
| return new Promise((resolve) => { | |
| setTimeout(() => { | |
| let i = 0; | |
| const typingInterval = setInterval(() => { | |
| if (i < text.length) { | |
| element.textContent += text.charAt(i); | |
| i++; | |
| } else { | |
| clearInterval(typingInterval); | |
| resolve(); | |
| } | |
| }, speed); | |
| }, delay); | |
| }); | |
| } | |
| // Animate cell on hover | |
| function animateCell(cell) { | |
| cell.style.transform = 'scale(1.02)'; | |
| setTimeout(() => { | |
| cell.style.transform = 'scale(1)'; | |
| }, 300); | |
| } | |
| // Initialize the animation sequence | |
| async function initAnimation() { | |
| createPixels(); | |
| // Animate title is already handled by CSS | |
| // Animate numbers with staggered delays | |
| await typeWriter(document.getElementById('number1'), '5M+', 100); | |
| document.getElementById('label1').style.opacity = '1'; | |
| await typeWriter(document.getElementById('number2'), '70+', 100, 300); | |
| document.getElementById('label2').style.opacity = '1'; | |
| await typeWriter(document.getElementById('number3'), '200+', 100, 600); | |
| document.getElementById('label3').style.opacity = '1'; | |
| await typeWriter(document.getElementById('number4'), '15+', 100, 900); | |
| document.getElementById('label4').style.opacity = '1'; | |
| } | |
| // Start animation when page loads | |
| window.onload = initAnimation; | |
| </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=timoon811/tmtinnumbers" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |