Log in

View Full Version : Pictures gallery



drcolt45
12-19-2013, 06:21 AM
Hi,

Anyone knows a nice CSS way (or any other way) to show pictures in a page ? I'm looking for a way to enlarge pictures on click or even a free slide show.

Thank you !:)

traq
12-19-2013, 07:26 AM
Google is your friend. You might also try our very own Dynamic Drive library (http://www.dynamicdrive.com/dynamicindex4/index.html).

If you have a more specific question, you can post back here.

jscheuer1
12-19-2013, 02:41 PM
For CSS only image viewer/galleries, DD has:

http://www.dynamicdrive.com/style/csslibrary/item/css-image-gallery/

http://www.dynamicdrive.com/style/csslibrary/item/css-popup-image-viewer/

http://www.dynamicdrive.com/style/csslibrary/item/css_smart_image_enlarger/

http://www.dynamicdrive.com/style/csslibrary/item/css3_hover_image_gallery/

juliet1
12-23-2013, 08:14 AM
<a>Some Link
<div><img src="/you/image" /></div>
</a>

then...

a>div { display: none; }
a:hover>div { display: block; }