我正在使用Galleria&jCarousel,并且需要使幻灯片在图像中滚动。有谁知道我可以使用的简单JavaScript?
最佳答案
没关系,我想通了...用一个简单的javascript ...
$(function(){
var slideshow,
slideshowPause = 5 //seconds
$('#slideshow').fadeIn()
slideshow = window.setInterval(function(){
$.galleria.next()
}, slideshowPause * 1000)
});
关于javascript - 我需要使用Galleria模块旋转(滚动)图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2777007/