Skip to content
Advertisement

How can i make this JS Slider Auto Play on every three second

Here is a simple JS slider that has a previous and next button to change slide. I want to add one extra feature that is auto play with previous and next button.

I tried .setInterval(function() { /* for every three second */ }, 3000); to .getElementById('button-next'); to trigger from jQuery $("#button-next" ).click();.

It is working BUT the problem is that when I change browser tab and after some time come back to my slider tab then its complete all pending trigger of $("#button-next" ).click(); immediately continuously that spoil my slider effect.

How can I fix this?

JavaScript
JavaScript
JavaScript

Advertisement

Answer

Step 1 -Move the “Next” function to be a standalone function

Step 2 – Use this function in every 3 sec.

Step 3 – To prevent glitchig after comeback to tab, just add check for document.visibilityState==='visible'

The Classic case is to use setInterval, like this:

JavaScript
JavaScript
JavaScript

But if you want to reset the counter after user handly go back/next then better use setTimeout, and reset the timeout on bacck/next functions. like this:

JavaScript
JavaScript
JavaScript
Advertisement