diff --git a/img/bg/3.png b/img/bg/3.png new file mode 100644 index 0000000..3b64a16 Binary files /dev/null and b/img/bg/3.png differ diff --git a/img/bg/4.png b/img/bg/4.png new file mode 100644 index 0000000..d2f81bb Binary files /dev/null and b/img/bg/4.png differ diff --git a/img/bg/5.png b/img/bg/5.png new file mode 100644 index 0000000..ef182fd Binary files /dev/null and b/img/bg/5.png differ diff --git a/script.js b/script.js index 448f82e..44dcc3f 100644 --- a/script.js +++ b/script.js @@ -9,7 +9,7 @@ document.addEventListener("DOMContentLoaded", () => { }); function setRandomBackground() { - const images = ['1.jpg', '2.jpg']; + const images = ['1.jpg', '2.jpg', '3.png', '4.png', '5.png']; const randomIndex = Math.floor(Math.random() * images.length); const selectedImage = images[randomIndex]; document.body.style.backgroundImage = `url('img/bg/${selectedImage}')`;