Log in

View Full Version : Conveyor Belt slideshow script



mossawi
06-28-2005, 01:00 PM
hi,

my question is regarding this script: http://www.dynamicdrive.com/dynamicindex14/leftrightslide.htm

everytime the set of images end, iut jsut resets, i want the gap between the first loop and second loop to continue scrolling, how would i do that?

and second thing how would i set this to 5cm if i wanted to:
//Specify gap between each image (use HTML):
var imagegap=" "

thanks in advance

jscheuer1
06-28-2005, 06:46 PM
The demo just continues scrolling, what did you do to change that behavior?

I'm not too sure 5cm is a valid unit in HTML, if it is, one sure fire way is to use a small transparent .gif (1x1 or 1x2 pixels in actual size will do) and put this in the field you are talking about:
//Specify gap between each image (use HTML):
var imagegap="<img src='transparent.gif' width='5cm'>"If 5cm isn't valid HTML, and I suspect it is not, figure out the rough pixel equivalent say, 10:
//Specify gap between each image (use HTML):
var imagegap="<img src='transparent.gif' width='10'>"

mossawi
06-29-2005, 08:30 PM
thx a lot man, thx thx thx =D