JSFiddle - React, Tailwind, and code Playground
HTML
<title>Playing with the fiddles</title>
<h1 id="main-heading">Hello Steven</h1>
<script src="https://code.jquery.com/jquery-2.1.0.js"></script>
JavaScript
$("h1").fadeOut(1000);
$("h1").fadeIn(2000);
$("h1").fadeIn(3000);
for (h1=0; h1<5; h1++) {
$("h1").fadeOut(300);
$("h1").fadeIn(300);
}