CSS Library: Image CSS: Here
CSS Image Gallery
Author: Dynamic Drive
This is a purely CSS based image gallery that displays larger versions of thumbnail images dynamically when the mouse hovers over them. A rich HTML caption can be added to the enlarged image, and every aspect of the Image Gallery exists as plain HTML on the page. The idea is to use CSS's ":hover" pseudo class to cause an element to react onMouseover. When that happens, an absolutely positioned container holding the enlarged image, anchored on the page by another container with position set to relative, is shown. Furthermore, it's possible to modify the behavior so the enlarged images are only shown onClick, though IE6 currently doesn't support this behavior well. The gallery works in IE6+, Firefox, Opera 8+.
Demo:

Simply beautiful.

So real, it's unreal. Or is it?

Sushi for dinner anyone?

Run wild with horses.
Dynamic Drive

Dynamic Drive
Zoka Coffee

Zoka Coffee
Note: Here the enlarged images are set to "overlay" any content that it may come in contact with. You can easily disable overlaying just by giving the gallery container (.gallerycontainer) a height set to that of the largest image's.
The CSS:
Got a question or need help customizing this CSS code? Post it in the CSS Forums. If you have a comment or suggestion instead, post it in the comments section below.
Comment Pages 11 of 41 pages « First < 9 10 11 12 13 > Last »
I'm countering a major problem tho...
I need to use this in an iframe, and when I hover a thumb the big picture is not fully shown.
This is because the big picture does not go outside the iframe at all.
Please help me with this problem, I would be forever thankful, either mail me or reply to this :)
//Fredric
But, I have a long list of thumbnails which allow the user to scroll below the fixed main image display. Is there any way to make the main image display adjacent to the relevant thumbnail or to maintain it's position relative to the browser top rather than the page top?
Thanks
I'm using WordPress and can't seem to fathom how to use the CSS in the stylesheet that has to be used for the theme. Can someone help me? MSN is thesoulgirl at hotmail.com
Karen x
Great work! Keep it up!
For example, currently when you open up the page, the thumbnails are shown, but no main image until you hover over a thumbnail. It would be good if the first image could be always set to visible even while not hovering.
It would also need to be compatible in IE6
Comment Pages 11 of 41 pages « First < 9 10 11 12 13 > Last »
Commenting is not available in this weblog entry.






.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: center;
left:250px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
it was originally "0" but I want the enlarged img to follow along when the visitor scrolls down on the page