No. It says (on the demo page):
(check inside fadeslideshow.js to ensure that the paths to these 3 images are correct)
There is no mention of the word "test" on the demo page. This refers to the 3 helper images:
- x.png
- restore.png
- loading.png
Which are set here (highlighted) in the fadeslideshow.js file:
Code:
/* Ultimate Fade-in slideshow (v2.1)
* Last updated: Sept 10th, 2009. This notice must stay intact for usage
* Author: Dynamic Drive at http://www.dynamicdrive.com/
* Visit http://www.dynamicdrive.com/ for full source code
*/
//Oct 6th, 09' (v2.1): Adds option to randomize display order of images, via new option displaymode.randomize
var fadeSlideShow_descpanel={
controls: [['x.png
',7,7], ['restore.png
',10,11], ['loading.gif
',54,55]], //full URL and dimensions of close, restore, and loading images
fontStyle: 'normal 11px Verdana', //font style for text descriptions
slidespeed: 200 //speed of description panel animation (in millisec)
}
You probably still have a problem with the actual images for the show. The paths for these however are not in the fadeslideshow.js file. They are in the on page portion of the script (replace the highlighted with the paths and filenames of your own images):
Code:
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [250, 180], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["http://i26.tinypic.com/11l7ls0.jpg
", "", "", "Nothing beats relaxing next to the pool when the weather is hot."],
["http://i29.tinypic.com/xp3hns.jpg
", "http://en.wikipedia.org/wiki/Cave", "_new", "Some day I'd like to explore these caves!"],
["http://i30.tinypic.com/531q3n.jpg
"],
["http://i31.tinypic.com/119w28m.jpg
", "", "", "What a beautiful scene with everything changing colors."] //<--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: "ondemand",
togglerid: ""
})
If your images are in the same folder as your page, you only need their filenames in those highlighted fields.
If you want more help, please post a link to a page on your site that shows the script using your images (or at least trying to use your images).
Bookmarks