How to make a scrolling text effect with CSS and JavaScript
I added this effect to my website and here's how I did it
the HTML is really simple
<div class="scrolling">
<p>i like</p>
<p id="element">CSS</p>
</div>
and for the CSS part, we have this
@keyframes scroll {
0% {
transform: tran...
blog.gir8.it1 min read