In this Elementor tutorial I will show you an easy way to add a looping marquee effect to your website.
Timestamps:
- 0:00 Introduction
- 0:17 Right to Left Animation
- 4:40 Left to Right Animation
Right to Left Animation Code:
.marquee {
overflow: hidden;
display: flex;
}
.marquee h1{
white-space: nowrap;
}
Left to Right Animation Code:
.marquee2 {
overflow: hidden;
display: flex;
}
.marquee2 h1{
white-space: nowrap;
}