From 648577892db6a31aabc018f6750af664763f1195 Mon Sep 17 00:00:00 2001 From: CodeDevMLH Date: Thu, 19 Dec 2024 00:43:46 +0100 Subject: [PATCH] .. --- halloween.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/halloween.js b/halloween.js index 1eea0af..7583bab 100644 --- a/halloween.js +++ b/halloween.js @@ -101,8 +101,8 @@ function addRandomSymbols(count) { // set random horizontal position, animation delay and size(uncomment lines to enable) const randomLeft = Math.random() * 100; // position (0% to 100%) //const randomSize = Math.random() * 1.5 + 0.5; // size (0.5em to 2em) //uncomment to enable random size - const randomAnimationDelay = Math.random() * 8; // delay (0s to 8s) - const randomAnimationDelay2 = Math.random() * 5; // delay (0s to 5s) + const randomAnimationDelay = Math.random() * 10; // delay (0s to 10s) + const randomAnimationDelay2 = Math.random() * 3; // delay (0s to 3s) // apply styles halloweenDiv.style.left = `${randomLeft}%`;