Here's what that fake map above looks like in what smart people call an "exploded view."
See what I did? I took one image, cropped it into six and made each one active. Here's the code that I used to put the fake map together. The image commands are in blue. The link commands are in green:
<center>
<A HREF="index.html"><img src="mapo2.gif" width="100" height="25" border="0"></A><BR>
<A HREF="index.html"><img src="cellone.gif" width="100" height="45" border="0"></A><BR>
<A HREF="/javagoodies/index.html"><img src="celltwo.gif" width="100" height="45" border="0"></A><BR>
<A HREF="scan.html"><img src="cellthree.gif" width="100" height="45" border="0"></A><BR>
<A HREF="hgvideo.html"><img src="cellfour.gif" width="100" height="45" border="0"></A><BR>
<A HREF="hgvideo.html"><img src="mapo3.gif" width="100" height="25" border="0"></A><BR>
</center>
I included the <CENTER> commands in the code because they do play a pretty big part.
Once you have the images, and you are sure they will line up correctly, you simply build the map making sure the images load in order, top to bottom, left to right.
Tip One
Make sure all of your images are of correct
width and height as to line up forming a perfect second image. It kills
the entire effect without it.
Tip Two
The use of a line or smaller image that
moves through the multiple images gives a greater perception the image
is solid rather than a sum of parts. See the white box I have running through
the image? This takes a little practice.
Tip Three
Keep all the commands tight together. If
there is a space between the image and </A>, then that space will show
up and will kill the effect.
Tip Four
Run it all together. If you have two images
that sit next to each other on the same line, do not skip the second image's
commands to the next line. That will work on some browsers. Other browsers,
namely lower number version of browsers, will see your going to the next
line as a space. That space will appear when the images line up and will
kill the effect. Run it all together in a long line or at least butt the
</A><A HREF... commands up against each other.
Tip Five
Always use an align of some kind surrounding
the multiple images. Above I am using <center>. If you don't want it
centered, use <P ALIGN="left"></P> or
<P ALIGN="right"></P>. It helps greatly.
This is a lot of common sense. If your image
is 100X100 to start and the parts you create do not then add back up to
100X100, then there's going to be trouble. Just take your time with the
creation and cropping of the images and you should have no trouble with
this one after a few tries.