如何将 AutoSlide 效果添加到特定的图片库?
How to Add AutoSlide effect to a specific image gallery?
我是 jquery 的新手,我需要图像方面的帮助 gallery.I 已选择使用图库 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/。
提前致谢
我不认为这个插件有自动播放选项,但我可能是错的。如果需要,您可以使用 setInterval
每两秒转到下一张幻灯片:
setInterval(function() {
$('.rg-image-nav-next').click();
}, 2000);
我是 jquery 的新手,我需要图像方面的帮助 gallery.I 已选择使用图库 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/。 提前致谢
我不认为这个插件有自动播放选项,但我可能是错的。如果需要,您可以使用 setInterval
每两秒转到下一张幻灯片:
setInterval(function() {
$('.rg-image-nav-next').click();
}, 2000);