The Air Strange
07-31-2003, 09:55 AM
This is just an example of what I'd like:
On my start-up page, I have a clickable image. When I rollover the image, the image changes to say "enter." I want the image to change again to say "entering..." once the image is clicked.
Also, if possible, to delay the clicked image, so that the next page doesn't immediately load without giving the viewer enough time to read the "entering..." message.
I think this could be done with Macromedia, but I wanted to see if I could produce a similar effect without.
This is the bit of code I have so far:
<html>
Click on box to enter page.
<a href="start.html"
onmouseover="document.enterpic.src=enter.src"
onmouseout="document.enterpic.src=startup.src">
<img src="/ImageName.jpg" name="enterpic" width="118" height="65" border="0"/></a>
</html>
On my start-up page, I have a clickable image. When I rollover the image, the image changes to say "enter." I want the image to change again to say "entering..." once the image is clicked.
Also, if possible, to delay the clicked image, so that the next page doesn't immediately load without giving the viewer enough time to read the "entering..." message.
I think this could be done with Macromedia, but I wanted to see if I could produce a similar effect without.
This is the bit of code I have so far:
<html>
Click on box to enter page.
<a href="start.html"
onmouseover="document.enterpic.src=enter.src"
onmouseout="document.enterpic.src=startup.src">
<img src="/ImageName.jpg" name="enterpic" width="118" height="65" border="0"/></a>
</html>