JSFiddle - React, Tailwind, and code Playground

HTML

<div id="model"></div>

CSS

#model{position:relative;width:50px;height:50px;background:red}

JavaScript

$('#model').animate({
  'left': 50
}, 500, function(){
  $(this).animate({
    'top': 100
  }, 1000);
});