JSFiddle - React, Tailwind, and code Playground

by unknown601

HTML

<div class="fade">INNOVATION</div>

CSS

.fade{
     width:300px;
    height:300px;
    display:none;
    font-size:60px;
    font-weight:bold;
}

JavaScript

setTimeout(function() {
$(".fade").show();
}, 1000);
  setTimeout(function() {
$(".fade").hide();
}, 1030);