JSFiddle - React, Tailwind, and code Playground

by kennx

HTML

<button class="forward"> > </button>
<div style="width:400px;height:80px;position:relative;">
    <div class="box" style="position:absolute;width:80px;height:80px;left:0;top:0;background-color: lime;">
        ....
    </div>
</div>

JavaScript

$(document).ready(function() {
    $('.forward').click(function() {
        $('.box').animate({left: '+=80px'})
    })
})