I am new to jquery and i need help with an image gallery.I have choosen to use the gallery https://tympanus.net/Tutorials/ResponsiveImageGallery/ and what i want to do is to add the option of Auto slide for that gallery.The code is here : https://tympanus.net/codrops/2011/09/20/responsive-image-gallery/. Thanks in advance
I don't think that this plugin has an autoplay option, but I could be wrong. You can use setInterval
to go to the next slide every two seconds if you want:
setInterval(function() {
$('.rg-image-nav-next').click();
}, 2000);