Get a professional website for $99 per month. One week turnaround.

Scrolling Marquee Text (Elementor Tutorial)

Home Elementor Scrolling Marquee Text (Elementor Tutorial)

November 1, 2021

In this video I’m going to show you how to easily add scrolling text to your Elementor website.

The good news is this can be done using the free version of Elementor and doesn’t require any additional plugins. I will pull this off just using CSS.

Timestamps:

  • 0:00 Introduction
  • 0:58 Full Screen Scrolling Text
  • 5:40 Masked Scrolling Text

CSS Animation-Direction Link:
https://developer.mozilla.org/en-US/docs/Web/CSS/animation-direction

Full Screen Scrolling Text CSS Code:

				
					.marqueeheading h2{animation: cssmarquee 10s linear infinite;}
@keyframes cssmarquee {
0% {
transform: translateX(100vw);
}
100% {
transform: translateX(-100vw);
}
}
				
			

Masked Scrolling Text CSS Code:

				
					.marqueeheading h2{animation: cssmarquee 15s ease-in-out infinite alternate;
}

.marqueeheading {overflow: hidden;}
@keyframes cssmarquee {
0% {
transform: translateX(-100%);
}
50% {
transform: translateX(0);
}
100% {
transform: translateX(100%);
}
}
				
			

*Some of the links on this page are affiliate links, meaning we may receive a commission if you follow them. This allows us to continue providing free content and educational resources for you. Thank you for supporting our small business!

More Free Resources