Skip to content Skip to sidebar Skip to footer

Javascript Forward Backward Buttons

I'm using the s3Slider javascript slideshow on the homepage of a site I am developing: http://alexisparkinn.com/ I really like this slideshow but it has no way to enable the user t

Solution 1:

I know you didn't ask for suggestions, but let me just throw this out there as a solution: http://jquery.malsup.com/cycle/

After messing around with a ton of sliders, I've ended up going back to this one time after time. (and there is a 4KB version if all you want is the fade effect)

It has pretty decent documentation and is overall pretty easy and straightforward to use.

Anyway, just wanted to throw that out there. Best of luck to you!


Solution 2:

Just to hack something in, I'd modify your s3slider copy to include something like this (insert at line 38)

$(element).bind("s3slidernext", function() {
   current = items[currNo+1];
   fadeElement(false);
});

Then you can probably just call

$('#s3slider').trigger("s3slidernext");

To move the slider forward. Bind that to a button and you're all set.


Solution 3:

there are many jquery libraries that can help you out there like http://sorgalla.com/projects/jcarousel/


Post a Comment for "Javascript Forward Backward Buttons"