JSFiddle - React, Tailwind, and code Playground
HTML
<div id="PriceBox">Hey</div>
CSS
#PriceBox {
display: none;
background:#5e5e56;
}
JavaScript
$(document).ready(function() {
$('#PriceBox').delay(600).fadeIn(400).css('width', "300px").css('height', "200px");
});