0
How can i create an image slider that will change the images automatically at a specific time instead of using the next and prev
creating an image slider that loads automatically
1 Odpowiedź
+ 3
Use setInterval(function() { // your code to change images }, 5000).
The function will be executed every 5000 miliseconds.