✦ Script : La Machine à Écrire automatique ✦
Cette formule magique force vos titres à s'écrire lettre par lettre de façon automatique dès qu'un visiteur arrive [🌐].
📋 Code CSS & HTML à copier :
/* Écriture automatique en CSS */
.effet-machine {
overflow: hidden;
border-right: 3px solid #5ce1e6;
white-space: nowrap;
animation: typing 3.5s 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: #5ce1e6 } }