JSFiddle - React, Tailwind, and code Playground

by praveen_jegan

HTML

<div id="div1">
<img  id="img1" src="http://profile.ak.fbcdn.net/hprofile-ak-ash4/276852_277503830844_713265667_q.jpg"/> 
<img id="img2" src="http://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Square-symbol.svg/50px-Square-symbol.svg.png" />
</div>

JavaScript

setInterval(function(){
$('#img1').fadeOut("slow");
$("#img2").fadeIn("slow");
setInterval(function(){$('#img2').fadeOut("slow");
$("#img1").fadeIn("slow");},1000);
}, 1000);