Results 1 to 3 of 3

Thread: fade ins & outs going nowhere

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

    Default fade ins & outs going nowhere

    Hello,

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

    2) Script URL (on DD): I used this page's instructions http://www.dynamicdrive.com/dynamici...nslideshow.htm

    here's the original page without the fades & a properly rotating gallery: www.lesliemazoch.com

    here's the test page to get the fade ins & random order working: www.lesliemazoch.com/fades

    3) Describe problem: First picture fades in but nothing further happens. A gallery of 18 pictures should be randomly displayed with fade ins and fade outs.

    oh what a mess,

    thanks in advance to anyone with the time & good will to help me find the way


  2. #2
    Join Date
    Feb 2008
    Location
    Cebu City Philippines
    Posts
    1,160
    Thanks
    17
    Thanked 277 Times in 275 Posts

    Default

    What you have is erroneous:
    Code:
    fadeimages[0]=["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/17.JPG", "rotate/18.JPG"] //plain image syntax
    ...where in fact, it should be like this:
    Code:
    fadeimages[0]=["rotate/01.JPG"]
    fadeimages[1]=["rotate/02.JPG"]
    fadeimages[2]=["rotate/03.JPG"]
    .
    .
    .
    Alternatively, you can just change highlighted to fadeimagesArray:
    Code:
    fadeimages[0]=["rotate/01.JPG", "rotate/02.JPG . . .
    ...and add this just above the fadebgcolor declaration:
    Code:
    for(var i=0;i<fadeimagesArray.length;i++)
    	fadeimages[i]=[fadeimagesArray[i]]
    
    var fadebgcolor="white"
    Hope that helps.
    Learn how to code at 02geek

    The more you learn, the more you'll realize there's much more to learn
    Ray.ph!

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

    azul (11-04-2008)

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

    Default thanks rangana

    rangana

    THANK YOU !!

    i have to wait until thursday to make the changes.

    will be back in touch then. all the best,

    azul

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
  •