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?
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?
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
$('#galleria').galleria({
extend: function() {
this.play(4000); // will advance every 4th second
}
});
Yeah - I would just use Pikachoose myself. I use it on all my sites. Easy as delicious Pokemon pie.
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 });