JSFiddle - React, Tailwind, and code Playground
HTML
<img src="http://qrintrtest01:1000/Divisions/QHSE/CMSsite//_layouts/1033/images/new.gif">
CSS
body {
background-color: #45719B;
}
JavaScript
// Bind a custom fadeToggle event
$("img").bind("fadeToggle", function() {
// Call the fading toggle animation
$(this).fadeToggle("slow", function() {
// Trigger another fadeToggle event to recurse the animation
$(this).trigger("fadeToggle");
});
}).trigger("fadeToggle"); // Fire the initial event to start the chain