229 lines
9.0 KiB
HTML
229 lines
9.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>SIGNAL_TERMINAL_V7_FINAL</title>
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=VT323&family=JetBrains+Mono:wght@300;700&display=swap');
|
|
|
|
:root {
|
|
--bg: #0d0e12;
|
|
--surface: #16171d;
|
|
--text: #e0e0e0;
|
|
--cyan: #00f2ff;
|
|
--alert: #ff3e00;
|
|
--font-pixel: 'VT323', monospace;
|
|
--font-code: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
body, html {
|
|
margin: 0; padding: 0; background: var(--bg);
|
|
color: var(--text); font-family: var(--font-code);
|
|
overflow: hidden; height: 100vh;
|
|
}
|
|
|
|
/* --- CRT EFFECT (SUBTILE) --- */
|
|
body::before {
|
|
content: " "; display: block; position: absolute; top: 0; left: 0; bottom: 0; right: 0;
|
|
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%),
|
|
linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
|
|
z-index: 5000; background-size: 100% 2px, 3px 100%; pointer-events: none;
|
|
}
|
|
|
|
/* --- BACKGROUND FX --- */
|
|
#scanner-line {
|
|
position: fixed; top: 0; left: 0; width: 100%; height: 2px;
|
|
background: rgba(0, 242, 255, 0.2);
|
|
box-shadow: 0 0 15px var(--cyan);
|
|
z-index: 1000; pointer-events: none;
|
|
animation: scan 6s linear infinite;
|
|
}
|
|
@keyframes scan { from { top: -10%; } to { top: 110%; } }
|
|
|
|
#bg-logs {
|
|
position: fixed; bottom: 0; left: 0; width: 100%; height: 35px;
|
|
background: rgba(0,0,0,0.9); border-top: 1px solid #333;
|
|
font-family: var(--font-pixel); font-size: 1.1rem;
|
|
color: #444; overflow: hidden; z-index: 2000; display: flex; align-items: center;
|
|
}
|
|
|
|
#log-scroll {
|
|
white-space: nowrap;
|
|
animation: scroll 40s linear infinite;
|
|
display: inline-block;
|
|
}
|
|
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
|
|
|
|
/* --- CARDS & STACK --- */
|
|
#desk { position: relative; width: 100vw; height: 100vh; perspective: 1000px; padding: 50px; box-sizing: border-box; }
|
|
|
|
.card {
|
|
position: absolute; width: 520px; padding: 30px;
|
|
background: var(--surface); border: 1px solid #333;
|
|
box-shadow: 0 0 20px rgba(0,0,0,0.8);
|
|
display: none; transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
|
|
}
|
|
|
|
.card.active {
|
|
display: block;
|
|
animation: slide-in 0.4s ease-out forwards;
|
|
border-color: var(--cyan);
|
|
box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
|
|
}
|
|
|
|
.card.paused { transform: scale(0.8) translateY(-120vh) rotate(-15deg) !important; opacity: 0; }
|
|
|
|
@keyframes slide-in {
|
|
0% { transform: translateY(100px) rotate(10deg); opacity: 0; filter: blur(10px); }
|
|
100% { transform: translateY(0) rotate(var(--r)); opacity: 1; filter: blur(0); }
|
|
}
|
|
|
|
/* --- TYPO & UI --- */
|
|
h2 {
|
|
font-family: var(--font-pixel); font-size: 2.8rem; margin: 0 0 10px 0;
|
|
color: var(--cyan); text-transform: uppercase;
|
|
text-shadow: 0 0 10px var(--cyan);
|
|
animation: jitter 5s infinite;
|
|
}
|
|
|
|
@keyframes jitter {
|
|
0%, 95%, 100% { transform: translate(0); }
|
|
96% { transform: translate(2px, -1px); }
|
|
98% { transform: translate(-1px, 1px); }
|
|
}
|
|
|
|
.tag { font-family: var(--font-pixel); font-size: 1.1rem; color: var(--alert); margin-bottom: 5px; letter-spacing: 2px; }
|
|
|
|
.code-box {
|
|
background: #000; padding: 15px; border-left: 3px solid var(--cyan);
|
|
font-size: 0.85rem; color: #00ff00; margin: 15px 0;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
/* --- AXOLOTL LAYER --- */
|
|
#axo-layer {
|
|
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
|
|
background: #fff; color: #111;
|
|
display: none; flex-direction: column; justify-content: center; align-items: center;
|
|
z-index: 500;
|
|
}
|
|
#axo-layer.show { display: flex; animation: flash-in 0.4s cubic-bezier(0.19, 1, 0.22, 1); }
|
|
@keyframes flash-in { 0% { opacity: 0; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }
|
|
|
|
#ui-header {
|
|
position: fixed; top: 25px; left: 25px; font-family: var(--font-pixel);
|
|
font-size: 1.8rem; color: #333; z-index: 3000; letter-spacing: 3px;
|
|
}
|
|
|
|
.typing { overflow: hidden; white-space: nowrap; border-right: 2px solid var(--cyan); animation: typing 1s steps(40, end), blink-caret .75s step-end infinite; }
|
|
@keyframes typing { from { width: 0 } to { width: 100% } }
|
|
@keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: var(--cyan); } }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="scanner-line"></div>
|
|
<div id="ui-header">SYS_TRACE: <span id="progress" style="color:var(--cyan)">00</span></div>
|
|
|
|
<div id="bg-logs">
|
|
<div id="log-scroll"></div>
|
|
</div>
|
|
|
|
<div id="desk">
|
|
<div class="card" id="c0" style="--r: -2deg; top: 15%; left: 10%;">
|
|
<div class="tag">[ CORE_SECURITY ]</div>
|
|
<h2>01_PROTOCOLES</h2>
|
|
<p>Analyse C.I.D.A : Confidentialité, Intégrité, Authentification, Disponibilité.</p>
|
|
<div class="code-box">>> status: secure<br>>> encryption: enabled</div>
|
|
</div>
|
|
|
|
<div class="card" id="c1" style="--r: 2deg; top: 10%; left: 52%;">
|
|
<div class="tag">[ HISTORY_DUMP ]</div>
|
|
<h2>02_ERA_ZERO</h2>
|
|
<p>1982: SMTP (Email) / 1992: SMS.<br>Le serveur et l'opérateur ont un accès complet (Hop-by-Hop).</p>
|
|
</div>
|
|
|
|
<div class="card" id="c2" style="--r: -3deg; top: 50%; left: 15%;">
|
|
<div class="tag">[ LEGACY_CRYPT ]</div>
|
|
<h2>03_PIONNIERS</h2>
|
|
<p>PGP (1991): Async / No PFS.<br>OTR (2004): PFS / No Async (Mobile Fail).</p>
|
|
</div>
|
|
|
|
<div class="card" id="c3" style="--r: 1deg; top: 45%; left: 55%;">
|
|
<div class="tag">[ CURRENT_STD ]</div>
|
|
<h2>04_SIGNAL</h2>
|
|
<p>X3DH + Double Ratchet.<br>Auto-guérison des clés. Résistance PQXDH.</p>
|
|
</div>
|
|
|
|
<div class="card" id="c4" style="--r: -1deg; top: 20%; left: 30%;">
|
|
<div class="tag">[ THREAT_DETECT ]</div>
|
|
<h2 style="color:var(--alert)">05_LIMITES</h2>
|
|
<p>> Shor's Algorithm (Quantum)<br>> Pegasus (Endpoint compromise)<br>> MitM (Key Validation)</p>
|
|
</div>
|
|
|
|
<div class="card" id="c5" style="--r: 4deg; top: 55%; left: 35%;">
|
|
<div class="tag">[ GOVERNANCE ]</div>
|
|
<h2>06_SOUVERAIN</h2>
|
|
<p>Matrix (Tchap) vs Discord.<br>L'importance de la possession physique du serveur.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="axo-layer">
|
|
<div style="font-size: 10rem;">🦦</div>
|
|
<h2 style="color:#000; animation:none; border-bottom: 5px solid #000; font-size: 4rem;">TECH_FOCUS: X3DH</h2>
|
|
<p style="font-family: var(--font-pixel); font-size: 2rem; letter-spacing: 10px;">[ INITIALIZING WHITEBOARD ]</p>
|
|
</div>
|
|
|
|
<script>
|
|
let step = 0;
|
|
const cards = document.querySelectorAll('.card');
|
|
const axo = document.getElementById('axo-layer');
|
|
const logScroll = document.getElementById('log-scroll');
|
|
|
|
// LOGS EN CONTINU (Version infinie)
|
|
const logEntries = [
|
|
"CONNECTING TO TELECOM_NANCY_NODE", "HANDSHAKE SUCCESSFUL", "INJECTING X3DH_PARAM",
|
|
"RATCHET_KEY_ROTATION: OK", "ENCRYPTING DATA_PACKET_09", "BYPASSING FIREWALL",
|
|
"ACCESSING_MEM_DUMP", "DECRYPTING_SIGNAL_FLUX", "ANOMALY_DETECTED", "RE-ROUTING"
|
|
];
|
|
|
|
function initLogs() {
|
|
let text = "";
|
|
for(let i=0; i<50; i++) {
|
|
text += " > " + logEntries[Math.floor(Math.random()*logEntries.length)] + " -- " + Math.random().toString(16).slice(2,8);
|
|
}
|
|
logScroll.innerText = text + text; // Doublé pour le loop infini
|
|
}
|
|
initLogs();
|
|
|
|
function next() {
|
|
if (step < 4) {
|
|
cards[step].classList.add('active');
|
|
step++;
|
|
document.getElementById('progress').innerText = "0" + step;
|
|
}
|
|
else if (step === 4) {
|
|
document.querySelectorAll('.card.active').forEach(c => c.classList.add('paused'));
|
|
axo.classList.add('show');
|
|
step++;
|
|
}
|
|
else if (step === 5) {
|
|
axo.classList.remove('show');
|
|
document.querySelectorAll('.card.active').forEach(c => c.classList.remove('paused'));
|
|
step++;
|
|
}
|
|
else if (step > 5 && step < 8) {
|
|
cards[step-2].classList.add('active');
|
|
step++;
|
|
document.getElementById('progress').innerText = "0" + (step-2);
|
|
}
|
|
}
|
|
|
|
window.addEventListener('keydown', e => {
|
|
if (e.key === 'ArrowRight' || e.key === ' ') next();
|
|
if (e.key === 'Escape') location.reload();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |