Results 1 to 5 of 5

Thread: Ultimate Fade-in slideshow (want to remove link behavior)

  1. #1
    Join Date
    Nov 2008
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Ultimate Fade-in slideshow (want to remove link behavior)

    1) Script Title: Ultimate Fade-in slideshow (v1.51)

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...nslideshow.htm

    for this page - www.lesliemazoch.com

    3) Describe problem: i dont want the pix to behave as links. i only see one "a href" in the entire page of code, but can't figure out how to remove it properly so as not to loose everything.

    thanks in advance for your help,
    best,
    azul

  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

    Where you have:

    Code:
    fadeimages[0]=["rotate/01.JPG"]
    and similar, make them like:

    Code:
    fadeimages[0]=["rotate/01.JPG", "", ""]
    - John
    ________________________

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

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    azul (11-08-2008)

  4. #3
    Join Date
    Nov 2008
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default 4 JOHN - Ultimate Fade-in slideshow (want to remove link behavior)

    John, i made the changes, and i'm obviously doing something wrong because it took me back one step, where the pictures don't rotate at all.

    page - www.lesliemazoch.com
    code used: http://www.dynamicdrive.com/dynamici...nslideshow.htm

    if you could take one last look, i'd really appreciate it.

    best,
    azul

  5. #4
    Join Date
    Nov 2008
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default 4 JOHN part II - Ultimate Fade-in slideshow (want to remove link behavior)

    update - i've changed my code to this & it works -

    var fadeimages=new Array()
    //SET IMAGEPATHS. Extend or contract array as needed
    fadeimagesArray=["rotate/01.JPG", "rotate/02.JPG", "rotate/03.JPG", "rotate/04.JPG", "rotate/05.JPG", "rotate/06.JPG", "rotate/07.JPG", "rotate/08.JPG", "rotate/09.JPG", "rotate/10.JPG", "rotate/11.JPG", "rotate/12.JPG", "rotate/13.JPG", "rotate/14.JPG", "rotate/15.JPG", "rotate/16.JPG", "rotate/18.JPG", "rotate/19.JPG"]

    for(var i=0;i<fadeimagesArray.length;i++)
    fadeimages[i]=[fadeimagesArray[i]]

    var fadebgcolor="white"

    but all the images behave as links that go nowhere.

    any ideas?
    azul

  6. #5
    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

    Code:
    for(var i=0;i<fadeimagesArray.length;i++)
    	fadeimages[i]=[fadeimagesArray[i], '', ''];
    - John
    ________________________

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

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
  •