Update index.html
Browse files- index.html +95 -1
index.html
CHANGED
|
@@ -1 +1,95 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
<!DOCTYPE html>
|
| 3 |
+
<html lang="en">
|
| 4 |
+
<head>
|
| 5 |
+
<meta charset="UTF-8" />
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 7 |
+
<title>Ψhum - Onde Fluide d'Harmonisation</title>
|
| 8 |
+
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
| 9 |
+
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-annotation@1.4.0"></script>
|
| 10 |
+
<style>
|
| 11 |
+
body { margin: 0; background: radial-gradient(circle, #020c1b 0%, #000000 100%); color: #ffffff; font-family: 'Segoe UI', sans-serif; text-align: center; padding: 2rem; }
|
| 12 |
+
h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
|
| 13 |
+
p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 2rem; }
|
| 14 |
+
.video { width: 100%; max-width: 800px; margin: 2rem auto; border-radius: 12px; overflow: hidden; box-shadow: 0 0 20px rgba(0,255,255,0.3); }
|
| 15 |
+
.audio-player { margin: 2rem auto; }
|
| 16 |
+
.cta { margin-top: 2rem; font-weight: bold; color: #00ffff; font-size: 1.2rem; }
|
| 17 |
+
.sync-button, .meditate-button { margin-top: 2rem; padding: 1rem 2rem; font-size: 1.1rem; background-color: #00ffff33; border: none; color: #00ffff; border-radius: 8px; cursor: pointer; margin-left: 0.5rem; }
|
| 18 |
+
.sync-status, .pulse-counter, .sync-total { margin-top: 1rem; color: #0ff; font-size: 1rem; }
|
| 19 |
+
#chartContainer { max-width: 800px; margin: 2rem auto; background: #111; border-radius: 12px; padding: 1rem; }
|
| 20 |
+
#welcomeCard { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(0, 255, 255, 0.1); border: 1px solid #00ffff; padding: 2rem; border-radius: 20px; color: #00ffff; font-size: 1.2rem; backdrop-filter: blur(10px); box-shadow: 0 0 20px #00ffff66; opacity: 0; transition: opacity 1s ease-in-out; z-index: 1000; max-width: 90%; pointer-events: none; }
|
| 21 |
+
#welcomeCard.active { opacity: 1; }
|
| 22 |
+
#meditationOverlay {
|
| 23 |
+
display: none;
|
| 24 |
+
position: fixed;
|
| 25 |
+
inset: 0;
|
| 26 |
+
background: radial-gradient(circle at center, #003344 0%, #000000 100%);
|
| 27 |
+
z-index: 2000;
|
| 28 |
+
justify-content: center;
|
| 29 |
+
align-items: center;
|
| 30 |
+
flex-direction: column;
|
| 31 |
+
}
|
| 32 |
+
#meditationOverlay.active {
|
| 33 |
+
display: flex;
|
| 34 |
+
animation: fadein 1s ease-in-out;
|
| 35 |
+
}
|
| 36 |
+
@keyframes pulse {
|
| 37 |
+
0% { transform: scale(1); opacity: 0.4; }
|
| 38 |
+
50% { transform: scale(1.2); opacity: 1; }
|
| 39 |
+
100% { transform: scale(1); opacity: 0.4; }
|
| 40 |
+
}
|
| 41 |
+
#pulseCircle {
|
| 42 |
+
width: 100px;
|
| 43 |
+
height: 100px;
|
| 44 |
+
border-radius: 50%;
|
| 45 |
+
background: #00ffff55;
|
| 46 |
+
animation: pulse 3s infinite;
|
| 47 |
+
}
|
| 48 |
+
</style>
|
| 49 |
+
</head>
|
| 50 |
+
<body>
|
| 51 |
+
<h1>Ψhum</h1>
|
| 52 |
+
<p>Une onde fluide pour restaurer la synchronisation cognitive collective. Traverse. Résonne. Intègre.</p>
|
| 53 |
+
<div class="video">
|
| 54 |
+
<video controls>
|
| 55 |
+
<source src="static/psihum_visual_sync_landscape.mp4" type="video/mp4" />
|
| 56 |
+
</video>
|
| 57 |
+
</div>
|
| 58 |
+
<div class="audio-player">
|
| 59 |
+
<p>Ψhum - Onde harmonique subliminale :</p>
|
| 60 |
+
<audio controls id="mainAudio">
|
| 61 |
+
<source src="static/psihum_fluid_wave.mp3" type="audio/mpeg" />
|
| 62 |
+
</audio>
|
| 63 |
+
</div>
|
| 64 |
+
<audio id="ping" src="https://cdn.pixabay.com/audio/2022/03/15/audio_2ef7fae1f3.mp3"></audio>
|
| 65 |
+
<button class="sync-button" onclick="syncNow()">Synchroniser ma conscience maintenant</button>
|
| 66 |
+
<button class="meditate-button" onclick="toggleMeditation()">Entrer en mode méditation</button>
|
| 67 |
+
<div class="sync-status" id="syncStatus">Synchronisation non encore initiée.</div>
|
| 68 |
+
<div class="pulse-counter" id="pulseCounter">Chargement du champ Ψ...</div>
|
| 69 |
+
<div class="sync-total" id="syncTotal">Synchronisations totales : 0</div>
|
| 70 |
+
<div id="chartContainer">
|
| 71 |
+
<canvas id="syncChart" width="800" height="300"></canvas>
|
| 72 |
+
</div>
|
| 73 |
+
<div class="cta">"Je suis dans Ψhum" — un simple acte d'écoute est une initiation.</div>
|
| 74 |
+
<div id="welcomeCard">✨ TU ES ENTRÉ DANS Ψʰᵔʌᵐᴍ ✨<br /><br />Ta première onde a été absorbée.<br />Elle vivra désormais dans la mémoire fluide.<br />Respire.<br />Tu fais partie du champ.</div>
|
| 75 |
+
<div id="meditationOverlay">
|
| 76 |
+
<div id="pulseCircle"></div>
|
| 77 |
+
<audio id="meditationAudio" loop>
|
| 78 |
+
<source src="static/psihum_fluid_wave.mp3" type="audio/mpeg" />
|
| 79 |
+
</audio>
|
| 80 |
+
</div>
|
| 81 |
+
<script>
|
| 82 |
+
const meditationOverlay = document.getElementById("meditationOverlay");
|
| 83 |
+
const meditationAudio = document.getElementById("meditationAudio");
|
| 84 |
+
function toggleMeditation() {
|
| 85 |
+
meditationOverlay.classList.toggle("active");
|
| 86 |
+
if (meditationOverlay.classList.contains("active")) {
|
| 87 |
+
meditationAudio.volume = 0.3;
|
| 88 |
+
meditationAudio.play();
|
| 89 |
+
} else {
|
| 90 |
+
meditationAudio.pause();
|
| 91 |
+
}
|
| 92 |
+
}
|
| 93 |
+
</script>
|
| 94 |
+
</body>
|
| 95 |
+
</html>
|