How to Add AutoSlide effect to a specific image gallery?

55 views Asked by At

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

1

There are 1 answers

2
Ionut Necula On BEST ANSWER

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);