Search code examples
javascriptjquerydrupal-6jcarouselgalleria

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


I am using galleria & jCarousel and need to have the slideshow scroll through the images. Does anyone know a simple javascript that I can use for that?


Solution

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