Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What would be the easiest way to add a zoom icon to the top left of an image when you hover over the image.

All I am finding with rollovers is affecting the background image.

Ideally I would only make 1 zoom div and image

<div class="zoom"><img src="img/zoom_icon.png" /></div>

and clone that to any image inside a div called gallery

 <div class="gallery">
  <a href="#zoomed"><img src="img/hey.png" /></a>
 </div>

And use jquery with mouseover to get the zoom class and position it correctly:

display: block; position: relative; top:0; left:0

And when you mouseout to hide the zoom icon.

Hope this makes sense. Any advice would be great.

share|improve this question

1 Answer

up vote 3 down vote accepted

With jQuery:

var zoomIcon = $('<img src="path/to/zoom/icon.png" class="zoomIcon" />');
$('.zoom').hover(
    function(){
        $(this).append(zoomIcon);
    },
    function(){
        $(this).find('.zoomIcon').remove();
    });

With CSS:

.gallery {
    position: relative;
}

.gallery > .zoomIcon {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery:hover > .zoomIcon {
    display: block;
}

This requires the following mark-up, of course:

<div class="gallery">
    <img src="path/to/zoom/icon.png" class="zoomIcon" />
    <!-- other content -->
</div>
share|improve this answer
Both examples work flawlessly. Thank you @david – uriah Dec 20 '11 at 13:20
You're very welcome; glad to be of help! =) – David Thomas Dec 20 '11 at 13:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.