marquee.js
ASCII text
1// @license magnet:?xt=urn:btih:8e4f440f4c65981c5bf93c76d35135ba5064d8b7&dn=apache-2.0.txt Apache-2.0 2 3function isOverflown(e) { 4return e.scrollWidth > e.clientWidth; 5} 6 7let marquees = document.querySelectorAll(".inner-thumbnail-marquee"); 8 9for(const e of marquees) { 10if(isOverflown(e)) { 11e.style.animationPlayState = "running"; 12e.style.transform = "translateX(100%)"; 13} else { 14e.style.animation = "none"; 15}; 16}; 17 18// @license-end