How would I make a photo slide show for a websites with various pictures from my digital camera?
I’m building a contracting website for my father and we have many photos of various houses that have been built. I would like to make a slide show that simply changes from photo to photo after appx. 5 seconds. I want it to be like the slide show on www.kbhomes.com. Thanks!
I’m building a contracting website for my father and we have many photos of various houses that have been built. I would like to make a slide show that simply changes from photo to photo after appx. 5 seconds. I want it to be like the slide show on www.kbhomes.com. I don’t wan’t to use anything like those myspace slideshows, simply ones I could make myself.
Tagged with: myspace slideshows • photo • photos • slide show
Filed under: Building Websites
Like this post? Subscribe to my RSS feed and get loads more!



go to http://www.photobucket.com
the code is classic, you can do it many different ways.
with just html, each page (1 per photo) can automatically forward to the next (one of the meta tags)
with javascript you can have an array of the pictures, and loop through them, setting the src of the img tag one by one, in a setInterval loop.
with ajax you don’t even have to make the array, you can just read the files from the directory all in html & javascript!