Log in

View Full Version : Scrolling Slideshow



funktheory
11-02-2009, 01:07 AM
Hi, I have done lots of searching on sites and couldnt find anything. I just want a scrolling slideshow for my website like this:

http://www.melissajenkinsphotography.com/portfolio.html

Any ideas? Thanks :)

jscheuer1
11-02-2009, 06:41 AM
That's not a script or anything real fancy. You can get that effect by having a division:


<div style="overflow: auto; width: 600px; height: 400px;">
put your image tags here
</div>

The trick is the overflow combined with the dimensions. You should set the height to the height of your images, and your width to less than the width of the width of all of the images combined. If you do this, a scrollbar like the one from your example page will auto appear.

funktheory
11-02-2009, 10:33 AM
ok thanks. I will have a play with it :)