Hello,
I want to use carousel for a slideshow image, but with automatic transitions.
For example for every 10 seconds the image change.
Is this possible?
Hello,
I want to use carousel for a slideshow image, but with automatic transitions.
For example for every 10 seconds the image change.
Is this possible?
You can use something like next
window.setInterval(function(){
myCarousel.goNext();
}, 2000)
thank you.
is it possible to do a loop and keep it playing?
There is no real “loop” functionality. You can implement a very similar behavior though
check the updated snippet - snippet.dhtmlx.com/f7d64ae80