Imagemaps, Mouseover

E

Eva Farnberger

Hi there,

I wonder if somebody could help me with the following: I have a picture
which is divided into parts and clicking on a certain part will open a new
window showing an enlarged view of this part, like this:

<map name="tetzel01">
<area shape="rect" coords="142,13,234,98" href="tetzel_detail01.html"
target="_blank" alt="Ansicht Detail - klicken" title="Ansicht Detail -
klicken">
</map>


I would like to try to alter it so that when someone's mouse is over a
certain part, the enlarged image pops up.

Thanks for any help!
 
M

McKirahan

Eva Farnberger said:
Hi there,

I wonder if somebody could help me with the following: I have a picture
which is divided into parts and clicking on a certain part will open a new
window showing an enlarged view of this part, like this:

<map name="tetzel01">
<area shape="rect" coords="142,13,234,98" href="tetzel_detail01.html"
target="_blank" alt="Ansicht Detail - klicken" title="Ansicht Detail -
klicken">
</map>


I would like to try to alter it so that when someone's mouse is over a
certain part, the enlarged image pops up.

Thanks for any help!


Do you want the enlarged image to open up in a new window as your code
suggests?

Or, might you want to display the enlarged image below the multiple images?

Look at "onmouseover" and "onmouseout'. For example,

<html>
<head>
<title>onmouse.htm</title>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="small_1" onMouseOut="img1.src=blank.gif'"
onMouseOver="img1.src='large_1.gif'"></td>
<td><img src="small_2" onMouseOut="img1.src='blank.gif'"
onMouseOver="img1.src='large_2.gif'"></td>
</tr>
</table>
<br>
<img src="blank.gif" name="img1">
</body>
</html>

This example doesn't use an image map but probably could be adapted.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,009
Latest member
GidgetGamb

Latest Threads

Top