vote up 2 vote down star

When I search images using Bing.com, I realize their images are well cropped and sorted. When you place your mouse on an image, another window will pop up with an enlarged image.

http://www.bing.com/images/search?q=Heros&FORM=BIFD#

I want to do the same thing in my program. I checked the source code of their page. They are using javascript, but still I have no clue how they make it. Does anyone familiar with it? Any suggestion is welcomed.

flag

I hope you don't expect somebody to write all the code for you! – Josh Stodola Jul 2 at 16:44
Of course not. Then there will be no fun. ;-) – Lily Jul 2 at 18:14

4 Answers

vote up 3 vote down check

If you look at the HTML, you'll see a span immediately above each of the images. It sets that frame's display style from "none" to "block". It then uses an animation library to resize the content of the covering frame.

link|flag
very good explanations! Thanks! – Lily Jul 2 at 18:17
vote up 2 vote down

It's the same image. It just enlarges it slightly.

link|flag
It is the same image, just enlarged but they are showing it in a new span that becomes visible when the user mouses over it. – p5ycho_p3nguin Jul 2 at 16:54
vote up 0 vote down

Its a javascript popup I believe. When you mouseover the image it creates an absolutely positioned div over the rest of the content. The div contains a slightly larger copy of the image that was mouse-overed. They probably use a javascript library to facilitate the getting larger effect. :D

When creating a popup window at a certain point where the user clicks, you need to access the windowX and windowY (might be called something different) properties of the generated event object. Since there windows are at fixed positions, they just always open up at the same spot.

link|flag
It's not a new window, they're just changing the inline css on a span element that appears directly above the image. – p5ycho_p3nguin Jul 2 at 16:52
vote up 0 vote down

Here's a simple HTML/CSS/Javascript example on changing the display property of an element with javascript:

HTML:

<div id="image1" class="image" onmouseover="showImg(1);">
   Here's the small image
</div>
<div id="bigImage1" class="bigImage" onmouseout"hideImg(1);">
   Here's the enlarged image and info about the picture
</div>

Javascript:

function showImg(num){
   document.getElementById('bigImage' + num).style.display='block';
}

function hideImg(num){
   document.getElementById('bigImage' + num).style.display='none';
}

CSS:

.bigImage{
   display:none
}

They also use a fancy transition thing like scriptaculous's effect-grow found here.

link|flag

Your Answer

Get an OpenID
or

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