开发者

I need to rotate (scroll) images using the galleria module

开发者 https://www.devze.com 2022-12-29 21:04 出处:网络
I am using galleria & jCarousel and need to have the slideshow scroll through the images. Does anyone k开发者_JS百科now a simple javascript that I can use for that?Never mind I figured it out... w

I am using galleria & jCarousel and need to have the slideshow scroll through the images. Does anyone k开发者_JS百科now a simple javascript that I can use for that?


Never mind I figured it out... with a simple javascript...

$(function(){
var slideshow,
    slideshowPause =  5 //seconds 
        $('#slideshow').fadeIn()
        slideshow = window.setInterval(function(){
            $.galleria.next()
    }, slideshowPause * 1000)
});


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

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

0

精彩评论

暂无评论...
验证码 换一张
取 消