diff --git a/src/website.ts b/src/website.ts index 11f3149..c8b08b4 100644 --- a/src/website.ts +++ b/src/website.ts @@ -61,7 +61,9 @@ function fakeArt(element: Element): void { // On ajoute 150 caractères animés. [...Array(150)].forEach(() => { - element.appendChild(spawnChar()); + window.setTimeout(() => { + element.appendChild(spawnChar()); + }, (500 + Math.round(Math.random() * 1000))); }); }