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}%`;