const bgm = document.getElementById("bgm"); function toggleMusic() { if (bgm.paused) { bgm.play(); } else { bgm.pause(); } }
NEW PLANET DISCOVERED ORBITING THE CENTRAL STAR CB-623
const textToType = "During the survey of the newly discovered planet CB-623c, six unique entities were detected. Each finding represents a facet of the central star, Cường Bạch."; const targetElement = document.getElementById('typing-text-target'); let charIndex = 0; const typingSpeed = 50; function typeText() { if (charIndex < textToType.length) { targetElement.textContent += textToType.charAt(charIndex); charIndex++; setTimeout(typeText, typingSpeed); } } typeText();