pop up window with image

  • Thread starter Thread starter Lisa A
  • Start date Start date
L

Lisa A

Is there a way in Front Page 2003 to be able to click on an image that will
popup as a larger picture?
I would rather do this than make a whole new page to see the larger image.
Lisa A
 
Paso Fino (fini?) are cool.

Anyway, you want Spawn (its a free add in)
http://www.jimcosoftware.com/addins.aspx



| Here is an example of exactly what i'd like to do.
| http://www.ranchofino.com/sale.htm
| I see it's java script, but would like to know how to do that easy?
|
| | > Is there a way in Front Page 2003 to be able to click on an image that
| > will popup as a larger picture?
| > I would rather do this than make a whole new page to see the larger
image.
| > Lisa A
| >
|
|
 
I tried to answer this post yesterday but responded to another thread that
was completely different. Sorry to the other thread.

You can do it manually with Code View.

Add between <head> </head>

<script type="text/javascript">
function new_window(url) {

link =
window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=650,height=500,left=50,top=20");
link.focus()
}
</script>



Then with Design View highlight the text and and rightclick - Hyperlink...

javascript:new_window('http://www.websiteaddress.com/')

Please note the parameters are controlable that you added to the head.

I hope this works and explained it properly.

I wish you were able to right and paste items in the Hyperlink Frontpage
menu. You can use shortcut keys. Control + V to paste after you copy the
proper javascript link. This will help with typing errors and speed things up
and make things just as faster maybe faster than the plug-in that was
mentioned.

Charles
 
The page you showed also had a slideshow that used javascript. I don't know
what script they used. But here is a link to a javascript photo gallery that
creates the navigation on the fly. I have used this on my webpage and think
it is very good and easy to use. It would be perfect for popup windows as
well.

http://www.jeroenwijering.com/?item=PHP+Image+Gallery

It is donationware so if you get it working and like it you can send a few
dollars to the developer. His site also has some other great scripts. His
forum also is good for if you have a question.

Here it is on use on my website. I think it would work great with popups
with the example you cited.
http://yellowecho.com/portfoliogallery/index.html


Also if you have a popup that opens to a jpeg- Internet Explorer may offset
the jpeg a few pixels to the right. You may have to adjust the popup width
for this margin. If you have a popup that opens to HTML page and the jpeg is
located on that page then you can set the page margin to 0 if you want the
image to fill the popup window. This will become self evident once you start
creating pop-ups. You may want to test the popups on several browsers to see
if there is any difference beween broswers and the margins.
 
Back
Top