I want to add a photo gallery to my website and when you select a photo i would like it to zoom out into a larger image and have a button to go to the next image rather than closing down the zoomed image and selecting another photo to look at. I’m in work experience at the moment so have very limited experience and would appreciate any help you can offer me.
if you really wanna use html you are in for a world of hurt.
it will take hours to make all of the tables and breaks to do it.
to zoom.
you have to make thumbnails of your photos,
you also would have to make a html page for all of the photos you put on your page.
this is the code for just one photo;
gallery page:
<table width="the width of your site usually 764px" height="100%">
<a href="images/ super_cool_photo_page.html" target="_blank"> <img src="thubnail_of_your_photo.jpg"> </a>
</table>
photo page:
<image src="super_cool_photo.jpg"></img>
<a href="images/another_super_cool_photo_page.html> next>></a>
<a href="images="images/that_other_super_cool_photo_page.html> <<previous</a>
you would use less code using java, php or flash.
(I love php but flash is easyer)
February 27th, 2010 at 5:05 am
If you have no programming experience, the easiest way to way to get this done is by using a flash photo gallery software, such as A4Desk at http://gallery.a4desk.com/
The software enables you create photo gallery with scrollable thumbnails, prev/next button, image description, and zooming functions.
References :
February 27th, 2010 at 5:26 am
if you really wanna use html you are in for a world of hurt.
it will take hours to make all of the tables and breaks to do it.
to zoom.
you have to make thumbnails of your photos,
you also would have to make a html page for all of the photos you put on your page.
this is the code for just one photo;
gallery page:
<table width="the width of your site usually 764px" height="100%">
<a href="images/ super_cool_photo_page.html" target="_blank"> <img src="thubnail_of_your_photo.jpg"> </a>
</table>
photo page:
<image src="super_cool_photo.jpg"></img>
<a href="images/another_super_cool_photo_page.html> next>></a>
<a href="images="images/that_other_super_cool_photo_page.html> <<previous</a>
you would use less code using java, php or flash.
(I love php but flash is easyer)
References :