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?
A:
As far as I'm concerned, there's nothing better than jQuery Tools Scrollable:
gurun8
2010-05-05 21:47:01
A:
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)
});
Erik
2010-05-05 22:32:03
Always feels good to solve your own problems. Thanks for posting the code solution.
gurun8
2010-05-06 00:10:10
A:
Sorry to be a pain, but could you explain what else I would need to do to get this working on a fresh version of galleria?
pdonnelly
2010-05-16 20:11:50