I'm creating a slideshow, similar to that of the BBC homepage. I have managed to create it so that you can slide left and right, and it will scroll infinitely in a loop. The slide function simply uses an unordered list and prepends or appends the last or first list item to the list.
My problem is that I want to be able to jump to a specific slide... and I just can't think of a good way to do it. Any help would be greatly appreciated.
var slider = function(transition_time, transition, transition_speed, width){
var self = this; var slides = [];
// Slide left or right
this.slide = function(direction){
$('#slideshow-wrapper li').each(function(){
slides.push($(this).attr('id'));
});
if (direction == 0)
indent = parseInt($('#slideshow-wrapper').css('left')) + width;
else
indent = parseInt($('#slideshow-wrapper').css('left')) - width;
$('#slideshow-wrapper:not(:animated)').animate({'left' : indent}, transition_speed, transition, function(){
if (direction == 0)
$('#slideshow-wrapper li:last').detach().fadeIn().prependTo($('#slideshow-wrapper'));
else
$('#slideshow-wrapper li:first').detach().fadeIn().appendTo($('#slideshow-wrapper'));
$('#slideshow-wrapper').css({'left' : '-' + width + 'px'});
});
}
}
As requested, here is a link to a jsfiddle. http://jsfiddle.net/TqAdA/21/