I am currently building a website to host software. What I want is to add to the project pages is a slideshow of screenshots cycling, changing images about every 5 seconds.
You can use window.setInterval
Sample usage:
window.setInterval(function () { console.log("foo"); }, 3000);