views:

205

answers:

5

I am using this jQuery plugin

It is very nice, but I can't seem to figure out how to get it to auto-play. (automatically transition to the next image at an interval)

Has anyone else gotten this to do that?

A: 

In my experience, it doesn't have that option. You'd have to hack it to add that.

You might want to consider using another slider plugin: Easy Slider, Galleriffic, Pikachoose

Jeff
+2  A: 
$('#galleria').galleria({
    extend: function() {
        this.play(4000); // will advance every 4th second
    }
});
David
A: 

Whoever wrote that code, thank you! You're a life saver.

Thorn
A: 

Yeah - I would just use Pikachoose myself. I use it on all my sites. Easy as delicious Pokemon pie.

Cara Jo
A: 

Actually the new version of galleria has an option for autoplay... looks like this: (where .test is the name of the div layer containing your images)

// Load theme Galleria.loadTheme('../src/themes/classic/galleria.classic.js'); $('.test').galleria({ autoplay: 1000 });
Rodesco