/P>
document.addEventListener("DOMContentLoaded", function() {
const reviewsTicker = document.querySelector('.reviews-ticker');
let scrollAmount = 0;
function scrollReviews() {
scrollAmount++;
if (scrollAmount >= reviewsTicker.scrollWidth / 2) {
scrollAmount = 0; // Reset scroll amount
}
reviewsTicker.scrollLeft = scrollAmount;
requestAnimationFrame(scrollReviews);
}
scrollReviews();
});
/p>
Quote Source

