Back // -------------------- // Floating back button // -------------------- const button = document.getElementById("floating-back"); function moveButton(){ const maxX = window.innerWidth - button.offsetWidth; const maxY = window.innerHeight - button.offsetHeight; const x = Math.random() * maxX; const y = Math.random() * maxY; button.style.left = `${x}px`; button.style.top = `${y}px`; } moveButton(); // Move every 8 seconds setInterval(moveButton, 8000); // Also reposition after resizing window.addEventListener("resize", moveButton);