marquee.js
ASCII text
1function isOverflown(e) { 2return e.scrollWidth > e.clientWidth; 3} 4 5let marquees = document.querySelectorAll(".inner-thumbnail-marquee"); 6 7for(const e of marquees) { 8if(isOverflown(e)) { 9e.style.animationPlayState = "running"; 10e.style.transform = "translateX(100%)"; 11} else { 12e.style.animation = "none"; 13}; 14}; 15