I need to display an imagemap with about 70 areas in it. The area of the imagemap the mouse cursor is currently at is supposed to be highlighted in a certain color.
Is this possible and if yes, how?
|
I need to display an imagemap with about 70 areas in it. The area of the imagemap the mouse cursor is currently at is supposed to be highlighted in a certain color. Is this possible and if yes, how? |
|||||
|
|
After actually using it in production I'd say this is the answer: http://plugins.jquery.com/project/maphilight Using this it takes a few lines of code to implement that feature for any imagemap. |
|||
|
|
Yes, this is possible. I've done the exact thing with jquery and the image map area mouseenter / mouseleave events, but not with 70 areas. It will just be more work for you. You may consider loading the images via ajax calls on the mouseover, or using a sprite and positioning so you don't need to load 70 images into the dom. jquery:
Where .map-hovers is a div that has all the images that you want to lay over top of your map. You can position them if necessary, or make the image the same size as the image map, but with transparency. And some html to follow: NOTE: Notice how the image map area index lines up with the img index within the map-hovers container? ALSO: The image map must point to a transparent gif, and have the background image set to the actual image you want to display. This is a cross-browser thing - can't remember the exact reason.
|
||||
|
|
I don't know if there's a cool way to do it, but you could take your picture as background image of a block element, overlay it with a transparent picture and your image map and then replace this transparent picture on a mouseover event with a picture the area is highlighted in. On the downside you'll need 70 images of highlighted areas |
|||
|
|
|
I tried to use ScottE's solution but unfortunately that meant adding the target image as a body background. My solution is very close to his, but uses proper images jQuery:
The key concept here is that once you enter the map area, you show the map-hovers image, which then becomes your active layer under the mouse - Simply detecting when you leave that image is what make is smooth. HTML: (almost the same, no need for trans image)
|
|||
|
|