Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Software > Adobe Software > Dreamweaver

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-29-2008, 03:30 PM
Carol Brozman
 
Posts: n/a
thumbnail photo gallery right side to enlarging pic onleft side

Do you know how to build thumbnails on the right side, that when click on, will
enlarge the picture of the thumbnail clicked into a space on the left side.
(Not open another page with the enlarged picture? If so, can you give me a step
by step procedure on how to create within Dreamweaver CS3?

thanks,
Carol

Reply With Quote
  #2 (permalink)  
Old 09-29-2008, 03:59 PM
Derek @ Bl;ueyonder
 
Posts: n/a
Re: thumbnail photo gallery right side to enlarging pic on left side


"Carol Brozman" <webforumsuser@macromedia.com> wrote in message
news:gbqoq3$e4t$1@forums.macromedia.com...
> Do you know how to build thumbnails on the right side, that when click on,
> will
> enlarge the picture of the thumbnail clicked into a space on the left
> side.
> (Not open another page with the enlarged picture? If so, can you give me a
> step
> by step procedure on how to create within Dreamweaver CS3?
>
> thanks,
> Carol
>


Hi Carol

I have just done this ( ok my images are on top of each other) see if this
is what you were looking for.

http://zitech.co.uk/nslc/test4.php

This was done with a small piece of javascript and the code for all of this
page is below.

Just put in your own picture names and it just works. I have gone further
with this one and now load the images from a database so have replaced the
picture file names with variable.

<script type="text/javascript">

function doIt(obj){
document.getElementById("bigpic").src=obj.src
}

</script>
<center><a href="about.php"><img id="bigpic"
src="http://www.zitech.co.uk/nslc/images2/M408_Diana_Daniels_2_16_04_07.jpg"
width="640px" height="428px" ></center>
<br>
<br>
<br>
<br>
<br>
<br>
<hr>
<table width="80%" border="0" align="center">
<tr>
<td><img
src="http://www.zitech.co.uk/nslc/images2/M408_Diana_Daniels_2_16_04_07.jpg"
alt = "Tag here 1" width="100px" height="100px" onclick="doIt(this)"></td>
<td><img
src="http://www.zitech.co.uk/nslc/images2/M301-Murton-School-elsie-fo.jpg"
width="100px" height="100px" onclick="doIt(this)"></td>
<td><img
src="http://www.zitech.co.uk/nslc/images2/M256_Age_of_Chivalry.jpg"
width="100px" height="100px" onclick="doIt(this)"></td>
<td><img src="http://www.zitech.co.uk/nslc/images2/M210_Our_House2.jpg"
width="100px" height="100px" onclick="doIt(this)"></td>
<td><img src="http://www.zitech.co.uk/nslc/images2/Winter.jpg"
width="100px" height="100px" onclick="doIt(this)"></td>
<td> <img src="http://www.zitech.co.uk/nslc/images2/Sunset.jpg"
width="100px" height="100px" onclick="doIt(this)"></td>
<td> <img
src="http://www.zitech.co.uk/nslc/images2/M204_Linskill_Football_Team.jpg"
width="100px" height="100px" onclick="doIt(this)"></td>
<td><img
src="http://www.zitech.co.uk/nslc/images2/M154_Dalia_growing_Bill_Mahon_400x291.jpg"
width="100px" height="100px" onclick="doIt(this)"></td>
<td> <img
src="http://www.zitech.co.uk/nslc/images2/M0234_Deed_Hoose_2_July_04.jpg"
width="100px" height="100px" onclick="doIt(this)"></td>
<td><img
src="http://www.zitech.co.uk/nslc/images2/M0141_Thompson_red_Stamp2.jpg"
width="100px" height="100px" onclick="doIt(this)"></td>
</tr>
<tr>
<td><div align="center"><a href="accessibility.php">Memory 34</a>
</div></td>
<td><div align="center">Memory 35</div></td>
<td><div align="center">Memory 36</div></td>
<td><div align="center">Memory 37</div></td>
<td><div align="center">Memory 38</div></td>
<td><div align="center">Memory 39</div></td>
<td><div align="center">Memory 40 </div></td>
<td><div align="center">Memory 41 </div></td>
<td><div align="center">Memory 42 </div></td>
<td><div align="center">Memory 43 </div></td>
</tr>
</table>


Let us know how you get and and if this was of use.

Derek



Reply With Quote
  #3 (permalink)  
Old 09-29-2008, 09:11 PM
Nancy O
 
Posts: n/a
Re: thumbnail photo gallery right side to enlarging pic on left side

http://www.doknowevil.net/litebox/

www.jalbum.net

--Nancy O.
Alt-Web Design & Publishing
www.alt-web.com


"Carol Brozman" <webforumsuser@macromedia.com> wrote in message
news:gbqoq3$e4t$1@forums.macromedia.com...
> Do you know how to build thumbnails on the right side, that when click on,

will
> enlarge the picture of the thumbnail clicked into a space on the left

side.
> (Not open another page with the enlarged picture? If so, can you give me a

step
> by step procedure on how to create within Dreamweaver CS3?
>
> thanks,
> Carol
>



Reply With Quote
  #4 (permalink)  
Old 09-29-2008, 09:51 PM
Carol Brozman
 
Posts: n/a
Re: thumbnail photo gallery right side to enlarging picon left side

Hello Nancy,

Thank you for your reply. Litebox solution, still opens another window. I am
looking for a solution where the thumbnails are designed to the right side of a
web page, and a larger space to the right would house the image once the
thumbnail has been selected/clicked on. Then the user is not thrown to another
window or page, but remains on the page with the thumbnails to continue to
view/select.

Any solution found in Dreamweaver - not so much interested in third party
solutions, unless it is within the family of Adobe products.

thanks,
Carol

Reply With Quote
  #5 (permalink)  
Old 09-29-2008, 09:52 PM
Carol Brozman
 
Posts: n/a
Re: thumbnail photo gallery right side to enlarging picon left side

Sorry I mean a larger space to the left side in my answer to your reply would house the thumbnail image.
Reply With Quote
  #6 (permalink)  
Old 09-29-2008, 09:56 PM
JoeyD1978
 
Posts: n/a
Re: thumbnail photo gallery right side to enlarging picon left side

There's nothing like that "included" in Dreamweaver.

SimpleViewer is very close to what you're looking for. It uses Flash though, I
don't know if that's a deal breaker for you.

http://www.airtightinteractive.com/photos/ (demo)
http://www.airtightinteractive.com/simpleviewer/ (download)

You could build a page that shows/hides divs when you click on specific
thumbnails if you want to keep it to only HTML and JavaScript. That would be
quite time consuming compared to using a thirdparty solution.



Reply With Quote
  #7 (permalink)  
Old 09-29-2008, 11:55 PM
Carol Brozman
 
Posts: n/a
Re: thumbnail photo gallery right side to enlarging picon left side

Joey,
Hello, thank you for your great reply and information.

At first I was hestitant because I do not want the site contingent on having
Flash, but looking again, this is exactly what I am imagining.

Thank you so much - I believe your solution to be the best.

Carol

Reply With Quote
  #8 (permalink)  
Old 10-02-2008, 12:26 PM
fishface9876
 
Posts: n/a
Re: thumbnail photo gallery right side to enlarging picon left side

JoeyD1978
Really good info that has got me thinking of using it myself....so thx for the lead very neat app indeed.
Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Software > Adobe Software > Dreamweaver


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

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



All times are GMT. The time now is 07:43 AM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Ringtones | Loans | Per Insurance | Chomsky | Camilo Jose Cela



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114