Photo gallery like here:
I'm creating photo gallery of such a kind as in the image. It should have the following option: when clicking next/prev button on thumbnail row thumbs should move by one position but moving the thumbs should not change the big photo. I make it with Cycle2 and I initialize it in this way:
var slideshows = $('.cycle-slideshow').on('cycle-next cycle-prev', function(e, opts) {
if($(this).attr('id') == 'cycle-1'){
slideshows.not(this).cycle('goto', opts.currSlide);
}
});
$('#cycle-2 .cycle-slide').click(function(){
var index = $('#cycle-2').data('cycle.API').getSlideIndex(this);
slideshows.cycle('goto', index);
});
But now when clicking on prev/next buttons on thumbnails row - it always changes active slide in thumbs. So I have one active big slide and other active thumbs (they are not the same). I need to prevent changing of ".cycle-slide-active" on prev/next on thumbs. Can this be fixed with the current plugin?
You need to make sure that when the
id
iscycle-1
you need to callcycle
on onlycycle-1
like your doing if it'scycle-2
Change
To
Example
http://jsfiddle.net/pzPXE/12/
Update
http://jsfiddle.net/pzPXE/13/
Update 2
I had to modify your
css
a little bit because only 7 of the 8 images were visible in the bottom carousel.. But hopefully this will be of help.http://jsfiddle.net/pzPXE/16/