Simple Auto-Playing Slideshow

PHOTO EMBED

Tue Jun 23 2020 09:27:41 GMT+0000 (Coordinated Universal Time)

Saved by @Amna #javascript #jquery

$("#slideshow > div:gt(0)").hide();

setInterval(function() { 
  $('#slideshow > div:first')
    .fadeOut(1000)
    .next()
    .fadeIn(1000)
    .end()
    .appendTo('#slideshow');
},  3000);
content_copyCOPY

Run after DOM is ready.

https://css-tricks.com/snippets/jquery/simple-auto-playing-slideshow/