The markup used (divisions or tables) to display the contents of the slide show shouldn't make any noticeable difference in its speed. Generally, images displayed in a table will take longer to load though. However, the speed can be controlled here:
Code:
//Specify the slider's width (in pixels)
var sliderwidth="500px"
//Specify the slider's height
var sliderheight="270px"
//Specify the slider's slide speed (larger is faster 1-10)
var slidespeed=2
//configure background color:
slidebgcolor="#eaeaea"
If 1 is still too fast, the speed may be reduced further here:
Code:
lefttime=setInterval("slideleft()",30)
To slow things down, one would increase this number. If it is set too high though, the motion will become jerky. About 60 would be the upper limit.
Bookmarks