+ 1
How to create auto image slider using javascript?
I knew that how to create image slider using buttons in javascript. But i want that the images will automatically slide without any button. It should slide with some interval.
4 Respostas
+ 4
setTimeout (function (){window.location.href= "http://bfy.tw/A As1p" } , 1500)
+ 2
use setTimeout on your function slide next
+ 2
Use setInterval(function (){}, time in milliseconds)
It executes in every interval that you provided as second parameter to setInterval function.
+ 1
can you please elaborate it??