JSFiddle - React, Tailwind, and code Playground
by Shishir Max
HTML
<div class="scroll">This text be scrollin'!</div>
CSS
.scroll {
position: absolute;
right: -200px;
width: 200px;
}
body{
overflow: hidden;
}
JavaScript
$(document).ready(function(){
scroll();
function scroll(){
$('.scroll').animate({
right: $(document).width()
}, 20000, function(){
$('.scroll').css({right: '-200px'});
scroll();
});
}
});