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



