JSFiddle - React, Tailwind, and code Playground

by goldfingerxyz

HTML

<div id="belt">foo</div>

CSS

#belt { background: hotpink; }

JavaScript

jQuery.fn.continuousAnimation = function() {
    var $this = this;
    return $this.animate({
        'width': '+=235px'
    }, 400, 'linear', function() {
        $this.width(0).continuousAnimation();
    });
};

jQuery('#belt').continuousAnimation();