I have to build a content gallery for a client that has the following specifications:
- There will be two galleries on the page.
- They will be within lightboxes- users will click links, and the galleries will open in modal windows.
- The galleries will have next/prev buttons that will sit on top of the sliding content
- The galleries will contain both images and text/other content within each slide.
I have 3 examples of galleries I've built that don't quite do what they're supposed to, each in their own unique way:
1: Gallery Attempt One, based on the fearlessflyer slider: DEMO HERE
What doesn't work on this one: Buttons sit inside of each list item. I attempted to fix this by putting absolutely positioned images as fake buttons on top of the actual links, but this created an impossible-to-solve Z-Index issue in Internet Explorer. Damn.
My JQuery chops were not up to writing a new function so that the buttons could be independent of the LIs and trigger the sliding by counting how many times a button had been clicked, so I tried another solution:
2.Gallery Attempt Two, Based on TinyCarousel: DEMO HERE
What works about this one: Everything! It's great! I like the automatic enabling/disabling of that "Prev" button. No limit to how many carousels. Awesome. Except...
What doesn't work: For some reason I can't understand, putting the TinyCarousels inside of modal windows de-activates the buttons. The buttons literally acquire a class of "disabled" and stop working. Why? NO IDEA. Tried to fix it by using removeClass to take off the "disable" class. Didn't fix it. Out of ideas.
What doesn't work: This one plays nice with two galleries on the page, works inside of a modal window, but... the entire JQuery is targeting the IMG specifically, not the LI, so it won't work for my additional text content.
So, can anyone provide a solution or suggestion for either:
- Adding static buttons to Gallery Attempt One
- Fixing the bug in TinyCarousel that disables the galleries inside of modal windows
- Modifying Gallery Attempt Three so that it targets all content within an LI, not just the IMG, or
- A lightbox+gallery solution that you know does all of these things straight out of the box and allows for easy CSS customisation?
Further gallery attempts:
- BXgallery: doesn't work because it dynamically detects the size of it's content and sizes itself accordingly, making it 0px high & wide when the content is initially hidden in a modal window. DEMO HERE