text
const images = [ '/Occult_1.gif', '/Occult_2.gif', '/Occult_3.gif', '/Occult_1.gif', '/Occult_2.gif', '/Occult_3.gif' ]; function placeImages() { for (let i = 0; i < 20; i++) { const img = document.createElement('img'); img.src = images[Math.floor(Math.random() * images.length)]; img.style.top = Math.random() * 100 + 'vh'; img.style.left = Math.random() * 100 + 'vw'; img.style.transform = `rotate(${Math.random() * 360}deg) scale(${Math.random() * (5 - 0.5) + 0.5})`; // Random rotation and scale document.body.appendChild(img); } } window.onload = placeImages;