I came across another solution to this problem (below in the old email),
so I thought I would pass it on. This may seem simple, but it is all
new to me.

Instead of making the entire image the anchor for the url for the next
image, use the map option in html to make only a small area of the image
work as the link to the next image. That way, the cursor retains its normal,
arrow appearance over most of the image. For example, 5.html could contain
this:

<body>
<IMG SRC="image5.jpg" WIDTH=1000 HEIGHT=750 BORDER=0 USEMAP="#map">  
<MAP NAME="map">
<AREA SHAPE="CIRCLE" COORDS="359,384,104" HREF="6.html">
</MAP>    
</body>
This is easily done with gimp (filter/web/imagemap), although, this will
have to be automated with a sed script for stringing together numerous
images for a slide show. 
Joel

On Tue, Jan 28, 2003 at 09:04:33PM -0500, Joel Hammer wrote:
> I am preparing an HTML presentation. It is basically just a bunch of small
> sequentially numbered html documents which pull in jpg's, sorta like this,
> with irrelevant details left out. This document would be called 5.html,
> for example, and it displays image5.jpg.
> 
> <body>
> <p>
> <a href="6.html"><img src="image5.jpg"></a>
> </body>
> 
> Each image displayed by the browser is the link to the next html document
> and thus the next image in the sequence.
> 
> The problem is the cursor, when over a link,  becomes that whimpy looking
> small hand with the pointed finger, not really very impressive. Since the
> presenter might like to use the mouse to point out items of interest in
> the image, a bigger pointer, like a big arrow, would be much more useful.
> 
> I do not know where this is fixed: the GUI,  the browser (I am using opera, but
> may have to use IE if the computer has windows installed), or in the html.
> 
> Any insight appreciated,
> 
> Thanks,
> Joel
> 
> 
> 
> 
> 
_______________________________________________
Linux-users mailing list
[EMAIL PROTECTED]
Unsubscribe/Suspend/Etc -> http://www.linux-sxs.org/mailman/listinfo/linux-users

Reply via email to