nothing against searching.

C

chris leeds

Nothing against searching but does anyone have a link for a script or
tutorial to make a little photo gallery like this:
http://nedp.net/jsgallery.gif I'm not trying to avoid searching on my own
i'm just wondering if anyone knows of a good one that's pretty much like my
icon to save a little time.

TIA
 
S

Steve Easton

Chris,
I saw one just the other day, and
of course I didn't bookmark it.

If I remember I'll post it or
e-mail you.
:-(

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
C

chris leeds

thanks Steve, i'd appreciate it. i'm hoping to get a recommendation so i
don't have to try several.
 
A

Andrew Murray

try this :

http://www.myplace.50g.com

it has a free product called "Javascript Vault" - a collection of scripts the
author has put together; download it.

The script you could use as described by your link below is among the scripts in
the "javascript vault"

below is the code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<LINK href="general.css" rel="stylesheet" type="text/css">

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Jenny Blewitt ([email protected]) -->
<!-- Web Site: http://www.webdesignsdirect.com -->
<!-- Begin
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

ns3up = (browserName == "Netscape" && browserVer >= 3);
ie4up = (browserName.indexOf("Microsoft") >= 0 && browserVer >= 4);

function doPic(imgName) {
if (ns3up || ie4up) {
imgOn = ("" + imgName);
document.mainpic.src = imgOn;
}
}
// End -->
</script>

</HEAD>

<BODY Background=../graphics/grayback.jpg>
<center><BR>
<table width=360 border=1 cellspacing=0 cellpadding=0>
<tr>
<td><a href="javascript:doPic('toad.jpg');"><img src="toad.jpg" width=90
height=60 border=0></a></td>
<td><a href="javascript:doPic('lizard.jpg');"><img src="lizard.jpg" width=90
height=60 border=0></a></td>
<td><a href="javascript:doPic('gecko.jpg');"><img src="gecko.jpg" width=90
height=60 border=0></a></td>
<td><a href="javascript:doPic('chameleon.jpg');"><img src="chameleon.jpg"
width=90 height=60 border=0></a></td>
</tr>
<tr>
<td colspan=4 align=center><img name="mainpic" src="toad.jpg" width=365
height=190 border=0></td>
</tr>
</table>


</center>
</BODY>
</HTML>

I can't attach images in this example, but replace the example images with your
images, and it should work - not quite the same layout as you're asking about
but comes very close.
 
C

chris leeds

very perceptive andrew. I checked and i had downloaded that vault. (it's
the gallery viewer with the reptiles, right) that's pretty much what i was
looking for. thanks alot. I appreciate it.
 
Top