Results 1 to 3 of 3

Thread: Conveyor Belt slideshow script

  1. #1
    Join Date
    Jun 2005
    Posts
    40
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default Conveyor Belt slideshow script

    hi,

    my question is regarding this script: http://www.dynamicdrive.com/dynamici...rightslide.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

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    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:
    Code:
    //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:
    Code:
    //Specify gap between each image (use HTML):
    var imagegap="<img src='transparent.gif' width='10'>"
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Jun 2005
    Posts
    40
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default

    thx a lot man, thx thx thx =D

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •