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

Adding mouse effects

TUTORIAL

Adding mouse effects

Building a dynamic item page

TUTORIAL

Building a dynamic item page

Adding Scroll animations

TUTORIAL

Adding Scroll animations

What do you think about the tutorial?

More creation-fueling resources

Find the answers you’re looking for.

Join the conversation, get updates and community support. 

Join us on Discord to connect and grow with fellow creators.

Collab with other web design and dev pros.

Get in touch with the Studio team. We're here to help.

New skills, new boundaries to break. 

Start creating

bottom of page