document.addEventListener("DOMContentLoaded", function () { const btn = document.getElementById("sptPauseBtn"); if (!btn) return; let isPaused = false; btn.addEventListener("click", function () { const ticker = document.querySelector(".spt-posts-ticker"); if (!ticker) return; // STOP ALL CHILD ANIMATIONS / MOVEMENT if (!isPaused) { ticker.style.setProperty("overflow", "hidden"); ticker.querySelectorAll("*").forEach(el => { el.style.animationPlayState = "paused"; el.style.transition = "none"; }); btn.innerText = "Play"; btn.setAttribute("aria-label", "Play news ticker"); } else { ticker.querySelectorAll("*").forEach(el => { el.style.animationPlayState = "running"; }); btn.innerText = "Pause"; btn.setAttribute("aria-label", "Pause news ticker"); } isPaused = !isPaused; }); });
Scroll to Top