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?
Asked
Active
Viewed 956 times
2 Answers
2
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)
});

canintex
- 638
- 1
- 7
- 21
-
2Always feels good to solve your own problems. Thanks for posting the code solution. – gurun8 May 06 '10 at 00:10
0
As far as I'm concerned, there's nothing better than jQuery Tools Scrollable:

gurun8
- 3,526
- 12
- 36
- 53