POV-Ray : Newsgroups : povray.general : Linked POV-museum page is up and a java question : Re: Linked POV-museum page is up and a java question Server Time
10 Aug 2024 09:15:57 EDT (-0400)
  Re: Linked POV-museum page is up and a java question  
From: Jon A  Cruz
Date: 27 Jan 2000 23:44:59
Message: <38911FD7.31451697@geocities.com>
David Fontaine wrote:

> Just go to my main page there's a link right to it.
> Uwe suggested using Java to make the credits appear in the bar at the
> bottom when the mouse is moved over a link. How do I do that?

No Java or JavaScript (two entirely different things) needed. Just use
an imagemap. It should work one way or another in most every browser.
It's even in the official 3.2 specs, so it's very safe to use.

Here's a quick example:

<HTML>
<HEAD>
<TITLE>Imagemap test</TITLE>
</HEAD>
<BODY>

<H1>Imagemap test</H1>

<IMG SRC="colors.png" USEMAP="#basemap">


<P>That was a simple imagemap with one hot area</P>

<MAP NAME="basemap">
<AREA SHAPE=rect HREF="joncruz.html" COORDS="0,0, 100,200" ALT="Jon A.
Cruz">
<AREA SHAPE=rect HREF="someSubDirectory/" COORDS="110,0, 200,200"
ALT="Mystery Artist">
</MAP>


</BODY>
</HTML>

And for more details on what to do, see this link:

http://www.htmlhelp.org/reference/wilbur/special/area.html


--
"My new computer's got the clocks, it rocks
But it was obsolete before I opened the box" - W.A.Y.


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.