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, function(){
    $(this).animate({
      'left': 30
    }, 1000, function(){
      $(this).animate({
        'top': 50
      }, 1000, function(){
        $(this).animate({
          'left': 100
        }, 1000)
      })
    })
  });
});