Healthy Minds

Built Only Through Gโ€‘d

Built Only Through Gโ€‘d

--:--:--

Upload Your Artwork

// Artwork Upload + Floating Animation function showArtwork(event) { const file = event.target.files[0]; if (!file) return; const reader = new FileReader(); reader.onload = function(e) { const img = document.createElement("img"); img.src = e.target.result; img.style.position = "absolute"; img.style.width = "100px"; img.style.height = "100px"; img.style.left = Math.random() * window.innerWidth + "px"; img.style.top = Math.random() * window.innerHeight + "px"; img.style.animation = "float 10s infinite ease-in-out"; document.getElementById("artDisplay").appendChild(img); }; reader.readAsDataURL(file); } // Real-Time Clock Toggle function updateClock() { const now = new Date(); document.getElementById("clock").innerText = now.toLocaleTimeString(); } setInterval(updateClock, 1000); function toggleClock() { const clock = document.getElementById("clock"); clock.style.display = clock.style.display === "none" ? "block" : "none"; }

Background Music