Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scrolling Photos 2

Status
Not open for further replies.

rasta1975

Programmer
Oct 13, 2008
1
US
Hello,

I am using PageBuilder and I was wondering if there is a way to have photos scroll across a page horizontally and allows a visitor to stop and click on a photo.

Thank you.
 
There are ways, though I don;t know if Page Builder has anything built in, you'll have to get down and dirty into the code.

Something Similar to this:


Code:
<div style="height:200px; width:300px; overflow:scroll;">
<img src="image.jpg">
<img src="image.jpg">
<img src="image.jpg">
<img src="image.jpg">
<img src="image.jpg">
<img src="image.jpg">
<img src="image.jpg">
<img src="image.jpg">
<img src="image.jpg">
...
</div>

Something like that will let you scroll the images manually, if you want something more automatic you'll need Javascript.

----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
 
Not that I know of.
I've seen it done with Flash.

Greg
People demand freedom of speech as a compensation for the freedom of thought which they seldom use. Kierkegaard
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top