JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://www.snorkl.tv/dev/libs/greensock/TweenMax.min.js"></script>
<div class="box" id="box1"></div>
CSS
.box{
position:relative;
width:50px;
height:50px;
background-color:#f60;
margin:6px;
}
JavaScript
//add a 2-second delay
TweenLite.to($('#box1'), 1, {css:{left:400}, delay:2});
//note the delay goes outside the css object