JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<head> 
<style type="text/css">
   
#theImage { position: relative; }

 </style>
</head>
 
<body>
<img class="theImage" alt="resim"/>
</body>
</html>

JavaScript

$(document).ready(function(){  $("#theImage").click(function()   {    $(this).animate     ({left: "400px"}, 3000);    });   });