I have customized the jCarouselLite plugin (http://www.gmarwaha.com/jquery/jcarousellite) so that it does a few extra things:
- Generate thumbnails (with a btnGo class - keep reading) based on the number of images there are to scroll
- Set the width of the thumbnail container so that I can horizontally margin it (margin: 0 auto)
- Maintain a coherent active/inactive thumbnail display (i.e. when you click on thumb4, and it takes you to image4, give it a class of active. if then you scroll next, make the next one active and thumb4 inactive, etc.)
Everything I have explained so far still feels a bit shaky, but please bear with me.
So, jCarouselLite allows you to set navigational thumbnails (http://www.gmarwaha.com/jquery/jcarousellite/?#demo - select "Image Slider - External Controls" on the bottom right) by adding a "btnGo" array to the plugin, like so:
btnGo: ['.0','.1','.2','.3','.4','.5','.6','.7','.8','.9',
'.10','.11','.12','.13','.14','.15','.16','.17','.18','.19','.20']
That said, I took advantage of that feature and generated my thumbnails with the respective classes. The problem is, however, that my active/inactive thumbnails are not fully coherent. Please view this live example I have setup http://jsfiddle.net/hyVr2/ and use the next button to scroll up until the last thumb. Everything works fine until the active thumb must wrap back to the beginning. See for yourself.
I hope I explained myself thoroughly. It is hard to word-out all your coding ideas and concerns.
Thank you!
EDIT: In the jsFiddle, blue are the inactive thumbs, red the active one. Please notice how, once you reach the final thumb and the active thumb must wrap back to the beginning, it stays stuck on the first one and after pressing the next-button twice, it jumps to the 3rd position (jumps over the 2nd).