JSFiddle - React, Tailwind, and code Playground

HTML

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

CSS

.blue{
	position:absolute;
	top:100px;left:100px;
	width:100px;height:100px;
	background-color:blue;
	cursor:pointer;
	right:
}

.green{
	position:absolute;
	top:200px;left:300px;
	width:100px;height:100px;
	background-color:green;
	cursor:pointer;
	right:
}

JavaScript

$(function(){
	$(".blue").click(function() {
		$(".blue").animate({left: "-90"}, 500)	
    });

	$(".green").click(function() {
		$(".green").animate({left: "-50"}, 500)	
    });


})