Results 1 to 2 of 2

Thread: Ultimate Fade-In Slideshow script not working!

  1. #1
    Join Date
    May 2008
    Posts
    4
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Ultimate Fade-In Slideshow script not working!

    1) Script Title: Ultimate Fade-In Slideshow v2.1

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

    3) Describe problem:

    Hi there,

    I am trying to use this script to rotate 2 images when my webpage loads. However, nothing is happening at all. The webpage is:

    www.labellepetraie.com/inquirytest

    I have attached the js file also.

    Can you let me know what I'm doing wrong - it's just two images - nothing fancy so I don't know what's wrong.

  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 images are not on the server in the locations listed in the script.

    Code:
    <script type="text/javascript">
    
    var mygallery=new fadeSlideShow({
    	wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
    	dimensions: [780, 200], //width/height of gallery in pixels. Should reflect dimensions of largest image
    	imagearray: [
    		["freshplums.jpg"],
    		["lacdelanquis2.jpg"] //<--no trailing comma after very last image element!
    	],
    	displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
    	persist: false, //remember last viewed slide and recall within same session?
    	fadeduration: 500, //transition duration (milliseconds)
    	descreveal: "always",
    	togglerid: ""
    })
    </script>
    freshplums.jpg is here:

    Code:
    http://www.labellepetraie.com/Images/freshplums.jpg
    not:

    Code:
    http://www.labellepetraie.com/freshplums.jpg
    as indicated in your script. I couldn't find the other (lacdelanquis2.jpg) image.

    There could also be other problems.
    - 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
  •