JSFiddle - React, Tailwind, and code Playground

by thillin

HTML

<div class="block"></div>
<div class="loading_message">Loading</div>

CSS

.block {
    width: 400px;
    height: 200px;
    background: red;
    display:none;
}
.loading_message {
    position: absolute;
    left: 150px;
    width: 100px;
    font-size: 16px;
    height: 16px;
    top: 92px;
    text-align: center;
}

JavaScript

$('.block').delay(1500).fadeIn(500);
$('.loading_message').delay(1500).fadeOut(200);