PC Review


Reply
Thread Tools Rate Thread

Displaying different images in same position in window

 
 
=?Utf-8?B?UmFuZHk=?=
Guest
Posts: n/a
 
      18th Apr 2004
I have a set of thumbnails on a page (I have saved the thumbnails as separate files). I would like an enlarged picture to display (which I also have available) on the same web page as you click each thumbnail, changing the previous picture to the new enlarged one corresponding to the thumbnail clicked.

It's a portfolio that I'm trying to display, and I would like to have the user quickly zip through the portfolio without having to close a new window, hit the back back key, etc. All images would be displayed on the same web page. Can someone help

Thank you!
 
Reply With Quote
 
 
 
 
=?Utf-8?B?UmFuZHk=?=
Guest
Posts: n/a
 
      18th Apr 2004
I'm aware of the photo gallery feature and it's not entirely flexible. I'd like to build my own photo gallery...
 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      18th Apr 2004
Display them in an Iframe on the same page and set the Target frame to the iframe.

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

"Randy" <(E-Mail Removed)> wrote in message
news:8A639804-7322-4A25-8FB8-(E-Mail Removed)...
> I have a set of thumbnails on a page (I have saved the thumbnails as separate files). I

would like an enlarged picture to display (which I also have available) on the same web
page as you click each thumbnail, changing the previous picture to the new enlarged one
corresponding to the thumbnail clicked.
>
> It's a portfolio that I'm trying to display, and I would like to have the user quickly

zip through the portfolio without having to close a new window, hit the back back key,
etc. All images would be displayed on the same web page. Can someone help?
>
> Thank you!



 
Reply With Quote
 
Jon Spivey
Guest
Posts: n/a
 
      19th Apr 2004
Hi,
is this the kind of thing you want?
http://myweb.tiscali.co.uk/jonspivey...ars/index.html

If so you can download a behavior for the scrolling - I haven't got around
to making the picture behavior yet but you can email me offlist and I'll
help you out with it


--
Cheers,
Jon
Microsoft MVP - FP

Randy wrote:
> I have a set of thumbnails on a page (I have saved the thumbnails as
> separate files). I would like an enlarged picture to display (which
> I also have available) on the same web page as you click each
> thumbnail, changing the previous picture to the new enlarged one
> corresponding to the thumbnail clicked.
>
> It's a portfolio that I'm trying to display, and I would like to have
> the user quickly zip through the portfolio without having to close a
> new window, hit the back back key, etc. All images would be
> displayed on the same web page. Can someone help?
>
> Thank you!



 
Reply With Quote
 
=?Utf-8?B?UmFuZHk=?=
Guest
Posts: n/a
 
      19th Apr 2004
Steve, I can't tell you how much time I've spent trying to figure this out... and how much time you've saved me. THANKS

Randy
 
Reply With Quote
 
Andrew Murray
Guest
Posts: n/a
 
      20th Apr 2004

"Randy" <(E-Mail Removed)> wrote in message
news:8A639804-7322-4A25-8FB8-(E-Mail Removed)...
> I have a set of thumbnails on a page (I have saved the thumbnails as separate

files). I would like an enlarged picture to display (which I also have
available) on the same web page as you click each thumbnail, changing the
previous picture to the new enlarged one corresponding to the thumbnail clicked.
>
> It's a portfolio that I'm trying to display, and I would like to have the user

quickly zip through the portfolio without having to close a new window, hit the
back back key, etc. All images would be displayed on the same web page. Can
someone help?
>
> Thank you!




if you know javascript, use this code - it presents your thumbnails around the
edge of the large image, and the large image changes onclick of the little
images.

sorry, I don't havea working example at the moment.

this code was from http://myplace.50g.com if your're interested the product to
download free is "Javascript Vault" - and has lots of other useful scripts.

Just change your images for those examples below, to the same dimensions, and it
should work OK.


<!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 ((E-Mail Removed)) -->
<!-- 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>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Displaying Global position data =?Utf-8?B?cmFpc3Vu?= Microsoft Excel Misc 1 1st Nov 2007 04:36 PM
Block images security feature / Images not displaying correctly =?Utf-8?B?cnN6ZWJyYXM=?= Microsoft Outlook Discussion 2 12th Jul 2006 10:04 PM
Displaying form at position =?Utf-8?B?UGV0ZXIgU2NobWl0eg==?= Microsoft Dot NET 1 27th Mar 2006 07:57 PM
Displaying record position on a form. =?Utf-8?B?QW5nZWwgYjE=?= Microsoft Access Forms 2 24th Nov 2004 04:29 PM
Displaying record position on a form =?Utf-8?B?QW5nZWwgYjE=?= Microsoft Access Form Coding 1 24th Nov 2004 03:01 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:22 AM.