JSFiddle - React, Tailwind, and code Playground
by ko echos
HTML
<div>
<img src="http://elegantthemes.com/preview/InStyle/wp-content/uploads/2008/11/s-1.jpg" />
<img src="http://elegantthemes.com/preview/InStyle/wp-content/uploads/2008/11/s-5.jpg" />
<img src="http://elegantthemes.com/preview/InStyle/wp-content/uploads/2008/11/s-3.jpg" />
</div>
CSS
img {position:absolute;}
JavaScript
function test() {
$("img").first().fadeOut(1000);
$('img').first().appendTo('div');
setTimeout(test, 5000);
}
test();