top of page
Building infinite testimonial marquee
Watch this short tutorial to learn how you can create an infinite testimonial marquee with Wix Studio tools and just a few lines of CSS.
Infinite marquees are a polished way to display reviews and keep them scrolling for a modern and professional feel. In this tutorial, learn how to duplicate tracks to create a seamless loop and add a few lines of CSS to animate the track with a linear, infinite scroll.
Here’s the code snippet:
.marquee-track {
animation: scroll 30s linear infinite;
}
@keyframes scroll {
0% { transform: translateX(0%);
}
100% {
transform: translateX(-50%);
}
}EXPLORE MORE CONTENT
More creation-fueling resources
bottom of page



