JSFiddle - React, Tailwind, and code Playground

HTML

<div class="blue"></div>

CSS

.blue{
	position:absolute;
	top:100px;left:10px;
	width:500px;height:500px;
	background-color:blue;
}

JavaScript

$(function(){
	$(".blue").click(function() {
		$(".blue").animate({left:"+=100"}, 500)	
    });
})