JSFiddle - React, Tailwind, and code Playground
HTML
<marquee scrollamount="5">lol</marquee>
CSS
marquee {background: red;}
JavaScript
$(function() {
$('marquee').mouseover(function() {
$(this).attr('scrollamount',0);
}).mouseout(function() {
$(this).attr('scrollamount',5);
});
});