Click to See Complete Forum and Search --> : Image hyperlinks


wokkaboy
03-07-2005, 04:31 AM
Hi,

I need to create a series of 4 images, one replacing the next, which when clicked has to link to a different URL (basically like an animted gif but each frame to act as a different hyperlink).

Each image should appear on screen for about 3 seconds before moving onto the next.

Can anyone shed any light on how I set the properties of each image to link to a different URL?

Many thanks in advance
WB

TheBearMay
03-07-2005, 07:53 AM
Easiest way is to embed it in an anchor tag:

<a href="firstImg.htm"><img src="firstImg.jpg" /></a>

or you can consider using:

<img src="firstImg.jpg" onclick="document.location.href='firstImg.htm'" />