I've cobbled together a slideshow with fade transitions from a tutorial but would like to modify it to allow multiple slideshows on the same page.
How do I go about this... really not sure where to start...
Thanks :)
// Global: slideshow with clickable thumbnails
jQuery("#large_images li").each(function(index, element){jQuery(element).attr("class", 'hide');});
jQuery("#large_images li").each(function(index, element){jQuery(element).attr("id", 'img'+index);});
jQuery("#thumbs span a").each(function(index, element){jQuery(element).attr("rel", 'img'+index);});
jQuery("#thumbs span a").first().addClass('selected');
var mainImg ='img0';
var displayed = 'img0';
imageHeight1= jQuery('#'+mainImg).children('img').attr("height") + "px";
jQuery(".slideshow").animate({
height: imageHeight1
}, 0 ); // how long the animation should be
jQuery('#img0').css('display', 'inline');
jQuery('#img0').addClass('displayed');
jQuery('#thumbs span a').click (function(){
mainImg = jQuery(this).attr('rel');
if(mainImg != displayed){
// remove class from last clicked thumbnail
jQuery('.selected').removeClass('selected');
// add class to current thumbnail
jQuery(this).addClass('selected');
imageHeight= jQuery('#'+mainImg).children('img').attr("height") + "px";
jQuery(".slideshow").animate({
height: imageHeight
}, 300 ); // how long the animation should be
jQuery('.displayed').fadeOut();
jQuery('#'+mainImg).fadeIn('', function(){
jQuery(this).addClass('displayed');
displayed = mainImg;
});
}
});