JSFiddle - React, Tailwind, and code Playground
by Ian Roberts
HTML
<div id="div">asdfasdfasdf</div>
CSS
#div{display:none; position:relative;}
JavaScript
//how to fade in and animate or bounce what have you... at the same time
$('#div').css({'display':'block', 'opacity':'0'}).animate({'opacity':'1','left':'5%'}, 1500);