Results 1 to 3 of 3

Thread: Conveyor Belt slideshow questions

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

    Default Conveyor Belt slideshow questions

    http://www.dynamicdrive.com/dynamici...rightslide.htm

    Great script!

    Have a few questions about it though.

    How do I remove the link to the pictures and not make it react when the cursor moves over them, I only want the slide f/x?!
    Can I remove the border around the pictures?
    Can I set gap between the pics to nil (I have tried ' var slideshowgap=0 ' but it still leaves a gap).

    Hope for any help thanks.

  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

    To remove links and borders, change your typical array entry from this:

    Code:
    leftrightslide[0]='<a href="http://"><img src="dynamicbook1.gif" border=1></a>'
    to:

    Code:
    leftrightslide[0]='<img src="dynamicbook1.gif" border=0>'
    To specify no gap, use:

    Code:
    //Specify gap between each image (use HTML):
    var imagegap=""
    That's two double quotes with nothing, not even a space, between them.
    - John
    ________________________

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

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

    Default

    Thank you John!
    It worked.
    You are very helpful.

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
  •