Meilleure initialisation de l'art numérique.

This commit is contained in:
Madeorsk 2024-09-07 15:28:09 +02:00
parent 232277679d
commit 606a42c361

View file

@ -61,7 +61,9 @@ function fakeArt(element: Element): void
{ {
// On ajoute 150 caractères animés. // On ajoute 150 caractères animés.
[...Array(150)].forEach(() => { [...Array(150)].forEach(() => {
element.appendChild(spawnChar()); window.setTimeout(() => {
element.appendChild(spawnChar());
}, (500 + Math.round(Math.random() * 1000)));
}); });
} }