0

我正在使用 Galleria 和 jCarousel,需要让幻灯片滚动浏览图像。有谁知道我可以使用的简单 javascript 吗?

4

2 回答 2

2

没关系我想通了......用一个简单的javascript......

$(function(){
var slideshow,
    slideshowPause =  5 //seconds 
        $('#slideshow').fadeIn()
        slideshow = window.setInterval(function(){
            $.galleria.next()
    }, slideshowPause * 1000)
});
于 2010-05-05T22:32:03.450 回答
0

As far as I'm concerned, there's nothing better than jQuery Tools Scrollable:

http://flowplayer.org/tools/demos/scrollable/index.html

于 2010-05-05T21:47:01.247 回答