le chaos n'est pas un
<script> // fonction pour créer un mouvement plus saccadé et moins de rotation function movetext() { const text = document.getelementbyid('text'); const randomx = math.random() * 50 - 25; // déplacement horizontal plus grand, entre -25px et 25px const randomy = math.random() * 10 - 5; // déplacement vertical réduit, entre -5px et 5px const randomrotation = math.random() * 4 - 2; // rotation légère, entre -2° et 2° text.style.transform = `translate(${randomx}px, ${randomy}px) rotate(${randomrotation}deg)`; } // déplacer le texte de manière saccadée et aléatoire toutes les 80ms setinterval(movetext, 80); </script>