I have a small gallery of thumbnails. When I place my mouse pointer over a thumbnail image I'd like to have a full size image pop up in a div in the top right of the screen. I've seen this done using just CSS and I'd like to go down that route rather than use javascript if possible.
|
|
Pure CSS Popups2, from the same site that brings us Complexspiral. Note that this example is using actual navigational links as the rolled-over element. If you don't want that, it may cause some stickiness regarding versions of IE. The basic technique is to stick each image inside a link tag with an actual href (Otherwise some IE versions will neglect :hover)
and position it cleverly using absolute position. Hide the image initially
and then on the link rollover, set it up to appear.
That's the basic technique, but there are always going to be major positioning limitations since the image tag dwells inside the link tag. See the link for details; he uses something a little more tricky than display: none to hide the image. |
|||
|
|
|
|
CSS Playground uses pure CSS for this type of thing, one of the demos is surely to help you and as it's all CSS just view source to learn - you probably want to use the :hover pseudo class but there are limitations to it depending on your browser targeting. |
||
|
|
|
|
You probably ought to go with Javascript if browser compatibility is important. |
||
|
|
|
|
Eric Meyer's Pure CSS Popups 2 demo sounds similar enough to what you want. |
||
|
|
|
|
Here's one example: Here's another: And another one... This last one acts upon click. Just to be complete in behaviours. Cheers, Gus |
||
|
|
|
|
Hi Gustavo, thanks for linking. I have also created a blog post to explain the method I used and some of the pitfalls of this method here. Hope your readers find this helpful. Ciao, Jayx |
||
|
|
