jPhotoGrid - Zoomable jQuery Image Gallery
This plugin takes a simple list of images and captions and turns it into a grid of photos that can be explored and zoomed. Nearly all of the styling for this plugin is done in css. The trick is to layout the grid by floating the list items. The first thing the plugin will then do, is convert these all to absolutely positioned. This is what allows the plugin to zoom in on an individual image and then return it to its place.
Html for this plugin is simply an unordered list of images and captions. The CSS is also fairly straight-forward. The key things to notice are the .active and .selected classes. When you hover over a list item, it is given the class ‘active’. Once you have clicked the list item, it is given the ‘selected’ class.
The javascript is easy enough to set up. It needs to know the sizing of the thumbnails as well as the sizing and positioning of the zoomed image. This is how the plugin is able to zoom and restore each of the images.
Demo: http://www.newmediacampaigns.com/files/posts/jphotogrid/example.html