Tools For Photo Album With Html

Pages: 1, 2
free web hosting

Read Latest Entries..: (Post #12) by BrknDreamer on Mar 4 2006, 01:47 PM. (Line Breaks Removed)
QUOTE(tillo @ Jan 17 2006, 02:58 PM) Wow, thank you all for the good replies! Thanks for the nice examples, links and lessons. I have enough information to study for a whole weekend. The website made by Mich is just what I had in mind.tillo If you're BRAND NEW at html & stuff... check out dynamicdrive.comLots of little scripts & copy & paste codes to help you get ... read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion > CONTRIBUTE > The Internet > Web Design

Tools For Photo Album With Html

tillo
I'm new in web design and I want to build a web site where my family can view thumbnail pages with family photos and select the thumbnails to view the original photo. As a starter I thought about a couple of thumbnail pages to increment or decrement. I want to generate the pages with a free tool in order to review the html code for self learning purpose. Is this a good approach and is there any free tool suitable for this?


Tillo

Reply

sxyloverboy
hm well yeah you can learn from it but basicly what most html gallery programs do is make a table and generate thumbs put them in <img> tags and then you can define the thumbs max width and height and also how many rows per page and how many thumbs per row ect. and then it just makes all the html pages. and it usualy makes a page for each picture you can click on.

If you are VERY new to HTML it might help you a bit but its nothing you can learn from to code by hand because what there programs do is take a whole load of workload off of you. You can look at download.com for some software that makes HTML GALLERYs. if you get shareware their most likly gonna watermark your images or put some text on your website that tells it was made by that program. so see ifyou can get freeware but im not sure those dont watermark it either your gonna have to look around.

if you dont find anything search for THUMB GENERATOR or somehting like that.

if you have any more questions feel free to ask smile.gif

 

 

 


Reply

jlhaslip
Here is one of several links to found right here in the trap17 forums:
http://www.trap17.com/forums/php-photo-ima...ipt-t31792.html
Please use the Search feature found at the top of each page. Or look at the bottom of the Topic and there will always be a 'Similar Topics' list to link to.
This question has been asked several times recently and there are several topics for review. I have posted only one.

Reply

Thorned Rose
You can just create thumbnails for your images (very fast if you use a batch process in your graphics editing software) and all I do is put them in a table to keep them nice and neat and add an onClick behaviour to each one so that when someone clicks on the thumnail it opens a window with the full sized picture. It can be laborious if you have a lot of pictures but it is very basic and if you have good wysiwyg software (I use Dreamweaver MX) it's very straight forward. The downside is, as I said, if you have a lot of pictures, it's arduous and if the person viewing the pictures has a pop-up blocker, the full size pictures won't open. This is the method I use in my picture gallery (I'd love to point you to it but because my current host has screwed me big time, the link won't open sad.gif) Anywayz, this is how I do it:
The code looks like this:

<a href="javascript:;"><img src="miniaturehorse_thumb.jpg" width="150" height="102" border="0" onClick="MM_openBrWindow('miniaturehorse.jpg','','width=357,height=250')"></a>

<a href="javascript:;"> is just to add a link to the thumbnail. You can't add a behavior to a picture unless it is linked. You could just put in '#' (<a href="#"> but if you use #, every time someone clicks on a picture the page will jump to the top so I use an empty javascript command "javascript:;". The next part is the thumbnail that I want people to be able to click on, the width and height is obviously just the size of the thumbnail (you don't have to make a thumbnail, you can just make the original picture smaller by altering it's width and height attributes). The onClick is the behavior that allows someone to click on it. The MM_openBrWindow is what will happen when they click, in this case, open a window. The bit in the bracket immediately after is what will be in the window that opens (in this case a picture called miniaturehorse.jpg) and how big the window will be - 357 x 250 pixels. If you use this method, I would recommend that the window be 20 pixels bigger than the picture e.g if your picture is 100 x 130, the window would be 120 x 150. You can also set things like if the window will have scroll bars, navigation bar, resizing etc but I always disable them to make the window look nice and neat. This is of course clunky comparitively speaking and there are some much smoother javascripts out there but you would have to search for them. This is just one way using very basic html and javascript.

Reply

Mich
QUOTE(tillo @ Jan 16 2006, 02:48 PM)
I'm new in web design and I want to build a web site where my family can view thumbnail pages with family photos and select the thumbnails to view the original photo. As a starter I thought about a couple of thumbnail pages to increment or decrement. I want to generate the pages with a free tool in order to review the html code for self learning purpose. Is this a good approach and is there any free tool suitable for this?
Tillo 
*


I use tumbnails on my site often. A sample can be seen at
http://www.websetsbydonna.com/sideanimals.htm
Try it out, if this is what you want, you can use my page as a template. Or I can make you one if you like.



Actually here is a better example/template from my homepage site.

http://members.ync.net/dstahlarson/photosbydonna/

This would probably suit your purposes better. Of course, I would make the background color different. laugh.gif I am a purple and green freak.


Notice from jlhaslip:
Merged two posts.Please report them next time and the Mods will handle them. Edit to remove duplicate quote.

Reply

Inspiron
Ok I've done a search on Google and found these..
Hope they can somehow help in designing a HTML picture gallery.

http://www.mihov.com/eng/gc.html
http://www.nonags.com/nonags/htmlgallery.html
http://graphicssoft.about.com/od/webgalleryfreepc/
http://janim.net/web-freeware/free-html-gallery-creators.php

I can't post more links here but you can search for more by googling "html gallery freeware" as the keywords..

Reply

tillo
Wow, thank you all for the good replies! Thanks for the nice examples, links and lessons. I have enough information to study for a whole weekend. The website made by Mich is just what I had in mind.

tillo biggrin.gif biggrin.gif

Reply

Mich
QUOTE(tillo @ Jan 17 2006, 02:58 PM)
The website made by Mich is just what I had in mind.
*


Glad I could be of help. Here is a template version of my tumbnail link page for your photos. You can edit it to suit your needs.

Zip File Containing Template

Be patient when you click on the link, it takes a few moments for the download window to appear. If I can help in any other way, please feel free to PM me. rolleyes.gif

Reply

believer

there is a good album generator free for download an lots of template for you to use, I'm not sure if this has been mentioned before but you can check it out, it is called jalbum and I have used this one my site and it works great, user friendly and lots of options to choose from.

Reply

tillo
QUOTE(Mich @ Jan 17 2006, 11:05 PM)

Glad I could be of help.  Here is a template version of my tumbnail link page for your photos.  You can edit it to suit your needs.

Zip File Containing Template

Be patient when you click on the link, it takes a few moments for the download window to appear.  If I can help in any other way, please feel free to PM me. rolleyes.gif

*




Mich, very much appreciated. Thank you for your help, I will check this out!

Reply

Latest Entries

BrknDreamer
QUOTE(tillo @ Jan 17 2006, 02:58 PM) *

Wow, thank you all for the good replies! Thanks for the nice examples, links and lessons. I have enough information to study for a whole weekend. The website made by Mich is just what I had in mind.

tillo biggrin.gif biggrin.gif



If you're BRAND NEW at html & stuff... check out dynamicdrive.com

Lots of little scripts & copy & paste codes to help you get some extra bells & whistles while you're learning.
DD is a great site for beginners, they have a couple javascripts that you can copy & paste to make your gallery...I used it for my first one...

Reply

technocrat
tel u the easiest one ?

use PHOTOSHOP ! its VERY simple , and VERY easy to make .. just select the pictures and done ! thats it .... check in photoshop CS or CS2 ... u have sumthing called AUTOMATE ! .. taht thing makes ready made galleries , with different layoutts .. iv been using that .. for dynamic gallies , where i wdnt add / delete images.

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Pages: 1, 2
Recent Queries:-
  1. html photo gallery dreamweaver - 100.98 hr back. (1)
  2. photo album html code click photo to next photo - 189.17 hr back. (1)
  3. make html picture album - 190.84 hr back. (1)
  4. html picture gallery codes - 201.78 hr back. (1)
  5. html code album - 218.44 hr back. (3)
  6. photoalbum html javascript - 224.38 hr back. (1)
  7. rollover tumbnail javascript - 403.86 hr back. (1)
  8. html codes for pictures to appear in thumbnail - 614.44 hr back. (1)
  9. javascripts, mouse over thumbs, photo appears - 697.75 hr back. (1)
  10. web taht can edit photo - 709.09 hr back. (1)
  11. dreamweaver behavior html preloader "html preloader" - 1137.00 hr back. (1)
  12. behaviors - 1138.21 hr back. (1)
Similar Topics

Keywords : tools, photo, album, html

  1. Flippingbook Html Edition
    download FREE version (0)
  2. Naming Web Page Files
    Which way you like- MyPage.html or my-page.html or my_page.html (9)
    Everybody talks about meta tags, keywords, good title names and how they can increase page rankings,
    etc. But I was wondering whether the page name itself holds any value in indexing. Yes, I am
    talking about the web page file names (some-thing.html) NOT the one which you put in title tags. I
    am going to express my views and want to know what you think is correct. I have seen pages named in
    various ways like these: 1) my_web_page.html 2) DoYouLikeMyPage.html 3) hey-see-my-webpage.html (I
    think this way is more appropriate) 4) this.is.a.page.html (somewhat confusing) ....
  3. What Is The Best Free Html Editor?
    (20)
    im looking for any kind that is free really.... i use windows but if you have one for a different
    platfor, go ahead and add it for reference for other users. If you have one for normal text editor
    and wysiwyg, add them both. i have been using notepad as my normal html editor but im looking for
    something different... at least so i can see the different colors of the codes. Right now i am
    downloading moxilla's seamonkey suite but im not sure how good it is... i will post a review if
    i ever use one. If you have used the html editor you suggest or you just heard abou....
  4. Html Problem
    (9)
    how to make my intro page in the middle not CENTER ....
  5. Flash Media Into Html/css Website
    does anyone know how to import a flash into a webpage with transparenc (1)
    Hi I need some help , Im designing this website for school studies However, I made a flash drop down
    menu, works perfectly, but you know how flash has a background when you export it in to a SWF file?
    For example my flash is width= 800, and height = 200 but my div box on my html page for my
    navigation is only 50 px my buttons is width of 50px and the rest of the content is the drop down
    animations i want to insert it into my navigation div box but i want to set the flash background to
    transparent so that when the drop down menu comes down it overlaps the text or whateva....
  6. A Twist On Basic Authentification
    html help (1)
    Alright, i am working on a website where a number of different users from different companies will
    be looking hooking into one website. What i want is to know how i can differentiate between the
    users based on the information passed by the webserver. I've been told to that information
    will be passed along html_user(and if i have a distinct user then i can just query the database with
    that info and get what i want) But how does this work? I am sorry i know this is cryptic i'm
    kind of searching to see if this strikes a bell with anyone. So to sum, many user....
  7. Has Anybody Tried Ms Expression Web Html Editor
    It's much better than Frontpage (3)
    I was desperate to finish a site I was designing after I lost my hard drive and my software. I
    downloaded Expression Web from the Microsoft site for a 3 month free trial, and guess what? It's
    surprisingly good! Nothing like that crappy frontpage, it's standards compliant and very
    good for writing CSS. Haven't heard anybody mention the program and wondering if anybody else
    has tried it out. It's free to try from the MS site.....
  8. Where Is There A Good Site To Learn Web Html?
    (20)
    im a noob when it comes to web html to design web sites, can some one tell me where to find a good
    website that has good tutorials on how to use web html?....
  9. Css List Vs Html List
    (1)
    I am currently learning the basics of web building and i am wondering if and when you should use
    html lists or css lists? The way i see it is if you are going to make a css list you are going to
    use that list setup later and just make a html list when u just need it once? did i just answer my
    own question? or is there a web standard where you should always use css for lists? idk.....
  10. Help! Php Or Just Html?
    i want to start buliding my website. which is better, php or basic htm (13)
    i try to start this topic in webhost category but it seems like i cant. i dont have the permission
    so i just post my topic here. im sorry mod.. i want to build a website which contains: - Links to
    videos - Informations - photos - flash i don't know if i should use php or just HTML. guys,
    what are your opinions..??....
  11. A Small Html Problem
    How to display foreign characters correctly when designing a site. (4)
    I was wondering how I could solve a small problem. I was told that some people see accented and
    umlauted letters (such as " é " and " ë ") as question marks (" ? ") on my website. I come across
    the same thing sometimes when looking at websites which use non-English characters. Funnily enough,
    the other day, I looked at a site and the apostrophy ( ' ) was also shown as a question mark.
    That is a very common character usually, I would think. I thought it had something to do with the
    character encoding settings, and let me also mention I use Mozilla Firefox as my brows....
  12. Psd --> Editable Html
    (4)
    Here's the deal. I am new at working with web objects in photoshop. I have CS3, and I created a
    really nice template. I'm told I have to do something with slicing. So I have the template, and
    it has images, buttons, and text on the buttons, and text fields, etc. How can I export this to HTML
    and images, and be able to open it up in dreamweaver in an editable web page? I've tried
    exporting to "web and devices" and exporting as HTML and Images, but when I open it up in
    dreamweaver, it looks right, but it is all images. Thanks....
  13. I Buy A Book "html,xhtml&css Sixth Edition" By Elizabeth Castro
    (2)
    After few years when I take a look of the web, I find that what I have learnt before is totally
    obsolescent, the standard is changed a lot. So I go to book store to look for a book to learn it
    from the beginning. I find there is too many books about web design. What I want is a book can tell
    me the situation about the popular using method. After looking for about 1 hour, I find this book
    "HTML,XHTML&CSS Sixth Edition" which was writen by Elizabeth Castro. I think this book is meet the
    needs of me. What I want is to get the information of the new standard of web desig....
  14. Php Or Html?
    which do you use? (35)
    Well being a HTML its easy for me but what do people use the most? Is it HTML or PHP. It depends
    really on which you learnt first. So im gonna have a poll.Post HTML for Html and PHP for php and we
    will see which is more popular.....
  15. How To Use Html In Flash
    I need to import html into an iframe like box (1)
    As of this post I am trying to convert my current html website to a flash site. I use iframes in my
    html site and i am wondering if i can import html into a dynamic text box. I am wondering if i will
    need to redo the entire design in flash or if I can just import the html. If anything is confusing,
    please tell. Thanks in advance for the help /biggrin.gif" style="vertical-align:middle" emoid=":D"
    border="0" alt="biggrin.gif" />....
  16. Best Free Html/flash Templates
    (13)
    Before I began creating websites myself, i used templates. The best selection of free ones is here:
    TemplatesBox . Tons of free HTML and Flash templates (although you need to pay for the nicer ones),
    I'm not affiliated with them I just thought there were alot of threads looking for templates and
    this is a great resource.....
  17. Photo, Album, Picture, Gallery Scripts
    find the best (2)
    Hi everyone!!! Let's explain what we mean: This topic have been created for all
    those are looking for a good gallery script, and want to compare with others. I'm inviting you
    to post here your script or a link to the script you have found. Let's start with one:
    http://www.dynamicdrive.com/dynamicindex4/lightbox/index.htm This is a very nice script that make
    all the page darker and print in the srceen the selected photo. NOTE: please try to post your
    script as I did: with a short description... I hope this will help a lot of people ....
  18. Joomla & Mambo
    Great tools (9)
    Well since i have had Trap 17 hosting servie i hvae been trying to learn how to use and work with
    Mambo and Joomla. I have to say I finally have gotten the hang of it. Im learning how to manipulate
    it more and more, especially the skining of it. I definately have to recommend it to everyone out
    there if they are not using it. It is great, Its easy to use and once you read up on it its easy to
    change to your settings and personal likings. There are just a few things id like to still learn,
    so I have been on their forums reading and trying to learn new things.. but i....
  19. Besides Html / Css
    what kind of of coding do you use in your sites? (11)
    Hey guys I have a question for normal sites what kind of coding do you use besides the regular HTML,
    and CSS I realize for logins and forums etc.. php is common and the language of choice for database
    interaction but besides that for more cosmetic appealing appearence do you use anything else? Im
    asking this question cause im thinking of learning Java but im not sure how much that would help my
    web site design skills. And if thats not the one(in your opinon) to learn if I want to get better
    at website coding which one is? I have a shallow knowledge of VB and C++ but c....
  20. Tsw Webcoder
    Anyone use this html editor? (3)
    Hi all, does anybody use the TSW webcoder? I ave been using this to do my site for about 3 months
    now and it's great. It's easy to use and just got alot of functions. Has anyone got te
    newest version of it? and wats new in the new version? Thanks....
  21. Html Editor
    Text editor or HTML Editor (7)
    What is a HTML editor? A HTML editor i basically a text editor but it has some advanced
    features.The important one being able to translate written text into HTML codes.Nowadays everyone
    uses HTML editors but still there are some guys doing it over a Text editor What do you fell about
    this At present iam creating a webpage with MS FP .It is user friendly and actually a very good
    tool for a beginner.Beginers look no further than FP.Also one cannot expect,atleast 99% ,a flop show
    from Microsoft.It has an integrated FTP. But all sites do not support FP extensi....
  22. How To Create Html Feedback Form
    (3)
    Hello... I want to know a very simple thing...For example i want to add a simple HTML form on my
    website ,.for example , something like User Name (text box) User Email: (text box) COmments (text
    box) Submit form Reset Form Just like that, so that when user click on UBMIT form, button, it
    takes all the inputs from the above boxes and sends to a pre defined email adress.and on submitting
    it shows a new thanks page. Well..there are some forms when you fll everything, they open ur default
    mailbox and then send etc etc i want that to send direct (i.e. without opening the ....
  23. Html Editor
    some few questions.. (16)
    Hello, I have some few questions about a HTML Editor... :/ does it help make your site easier? what
    does it do? where can i get a good one, any recommendations? If it helps make your site easier then
    i need one /rolleyes.gif' border='0' style='vertical-align:middle' alt='rolleyes.gif' /> thanks
    for your help .. -Microsoft....
  24. Features Of Coffeecup Html Editor 2005
    (4)
    QUOTE The CoffeeCup HTML Editor is two editors in one. If you know HTML or want to learn more,
    use the code editor that has set the standard since 1996. To make pages fast or without knowing
    HTML, use the drag and drop WYSIWYG Visual Editor. You also can go back and forth between the Code
    and Visual Editors to create remarkable Web sites in a snap. CoffeeCup comes with more than 100
    DHTML and JavaScripts, a DHTML Menu wizard, 25,000 graphics and photos including more than 1,000 XP
    Style Icons, and access to more than 500 free Web site templates. It also has built-in....
  25. Formatting Php With Html
    (4)
    PHP is only a scripting language, meaning you will need HTML to make the output look good to the
    user. However if you insert HTML normally PHP will generate some errors, so read this tutorial to
    learn exactly how you need to format HTML for it to work with PHP. Lets say we want to display to
    our users the following: Welcome to my website! In HTML the code for that would be: Welcome
    to my website! However in PHP we need to add a forwards slash () in front of every quotation
    mark so that we dont interfere with the quotation marks in the PHP functions. Lets t....
  26. Flash Photo Album
    (20)
    I'm building a website for my home school group for my final project in a web design class
    I'm taking. I would like to add a flash scrapbook/photo album, but I'm not quite sure where
    to start. Does anyone know how to do this? I tried googling for a tutorial of some sort, but I
    didn't have any luck. Thanks!....
  27. Html Form Help Please
    finding a form script (2)
    Does anyone know of any tutorial or can help me with making a form. I'll describe the situation
    and lets see if you can help me. Ok like a few form or text areas that when you put some text into
    them they'll input the words from the form area above into another form or textarea under it.
    Sort of like an online html maker where you can select your background colors, put an image url in a
    field, and some other options THAN you hit a button that says generate. and it generates a website
    html source code where you can copy the whole thing and paste into your own we....
  28. Html Code Problem
    (7)
    Hi! Im working on a little HTML project for myself and am teaching myself.. So I would like to
    know how to set roll over effects and a short guide on it! What I mean is, I would like to know
    the code of making the mouse over on links make the links go red... Or if anyone can give me a way
    to do it on frontpage, because I cant find it! Thnx in advance!....
  29. Free Html Editor?
    (37)
    Hi, I'm looking for a free HTML editor. Not one of those new-fangled WYSIWYG ones... the only
    conditions are.... * Its free * It has syntax highlighting * It has a preview mode (like on
    dreamweaver or whatever). * It doesn't have any spy/adware! I figured that theres probably
    a great program out there somewhere, I just havent found it yet. I used to use one that I liked but
    since the Great Hard Drive Crash of 2004 it has disappeared from my PC, and I can't find
    anywhere to download it either.... Which (free) editor do you use? - Vacant....
  30. How To Make Pure Html Preloader?
    anyone know's the answer? (7)
    Hello all today i run out on this website and I found it very interesting... Anyone know how they
    did that page? and im specialy interested in that HTML preloader... ?? how to make one??....

    1. Looking for tools, photo, album, html

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for tools, photo, album, html

*MORE FROM TRAP17.COM*
advertisement



Tools For Photo Album With Html



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE