Slideshow on right of webpage 800 x 600

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Create a slideshow as part of a web page in Frontpage, I have 6 pictures of
width 160 x 460 height. Each pictures is made of 5 pictures on top of each
other.

Any other suggestions to show these 30 pictures in rotation on side of
excisting Web page 800x600
 
I think I would go about this by creating an array of photo names.
e.g. var Slides = new Array("trevor-les-eric-1985.jpg" ,
"03-10-07-7-eric.jpg" ,
"03-10-07-6-del.jpg" )
(example from my site)

Then in Jscript, use Setinterval to display Slides[0] in a absolutely
positioned div, followed by Slides[1], etc.
e.g. run = setInterval("chgImg()",delay) }
where chgImg() retreives the next image and delay is say 10000 (10 seconds )

chgImg would have code like this
ImgNum +=1
document.images.slide.src = Slides[ImgNum]

The html would be like this
<img id="slide" src="" alt="" title="">

I am not quite sure how you arrange 6 pictures, each with 5 on top, but
using an array this would not matter
 
Back
Top