JSFiddle - React, Tailwind, and code Playground
by rvaldez
HTML
<div id="imgBlck">
</div>
CSS
#imgBlck{
display:block;
width:200px;
height:200px;
background:#5456ff;
}
JavaScript
function animateImage() {
$('#imgBlck').fadeOut( 5000, function() {
$(this).fadeIn(5000);
});
}
$(document).ready(function(){
for (var i = 0; i <= 7; i++) {
animateImage();
}
});