JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://www.snorkl.tv/dev/libs/greensock/TweenMax.min.js"></script>
<script src="http://www.snorkl.tv/dev/libs/greensock/plugins/ColorPropsPlugin.min.js"></script>
<div id="box"></div>

CSS

#box{
    position:absolute;
    width:50px;
    height:50px;
    background-color:red;
}

JavaScript

var c1 = document.getElementById('box');
TweenMax.to(c1,1,{css:{bezier:{values:[{x:0,y:100},{x:200,y:0}]}},ease: Sine.easeInOut,repeat:-1, yoyo:true});