| How do you create
your own Web Pages with Image Maps and hot spots?
In the
HTML coding the USEMAP command indicates that there is a map of hot spots
on an image.
e.g.
<IMG USEMAP="#villagebg "SRC="villagebg.jpg">
To define
the tractor hot spot and to attach a sound it, you would add the following
code:
<MAP
name="villagebg"><AREA shape="rect" coords="474,230,498,247" href="tractor.au">
You must
supply the pixel coordinates for the hot spots. I used a shareware
program called Mapedit which
generated these coordinates automatically for me. All I had to do
was to stretch rectangles over the selected objects. Then I attached
the sounds to each hot spot.
|