JSFiddle - React, Tailwind, and code Playground
HTML
<div id="slidercontent">(here goes my Slideshow)</div>
CSS
#slidercontent {width:1101px; height:195px; margin:0 auto;
background-color:red;
display:none;
}
JavaScript
$(document).ready(function() {
$('#slidercontent').delay(1000).slideUp(1000);
});