Is there any jQuery gallery, which support multipages? My problem is, that every page contains different number of images. I'm using Lightbox 2, but i can't see any way to configure the gallery with multipages. I can create 5-6 static HTML Pages, one page can contains one image gallery, but i think, this is not the perfect solution. Any suggestions?
+4
A:
CmdrTallen just posted a SO post to Gallerific. It supports multipage solution as seen in the demo.
Super simple to implement you just put your images in a Unordered List (UL) (in the example below the "thumbs-min" is the UL) and then do something like this;
$(document).ready(function() {
// Initialize Minimal Galleriffic Gallery
$('#gallery').galleriffic('#thumbs-min', {
imageContainerSel: '#slideshow',
controlsContainerSel: '#controls'
});
});
Ghommey
2009-10-08 14:51:26
Galleriffic is a great solution for this. Easily coded, and easily maintained. Good call.
S Pangborn
2009-10-08 14:53:00
and how can i set the different number of images for each page? I see only the numThumbs parameter, but this is for all pages....
cupakob
2009-10-08 15:32:42
A:
This link might help you,
http://speckyboy.com/2009/06/03/15-amazing-jquery-image-galleryslideshow-plugins-and-tutorials/
Ravi
2009-10-08 14:55:08