The code references an external .js file, which you should download below:
* dropinslideshow.js) When I click on this link it just open up code?
That's normal. To actually save the file, don't left click it, and Right click it, and select "Save As" to save it. Don't forget to upload the file to your server.
With regards to Ultimate Fade-in slide show, the path to the images are all specified near the top of the script, in the following chunk:
Code:
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["photo1.jpg", "", ""] //plain image syntax
fadeimages[1]=["photo2.jpg", "http://www.cssdrive.com", ""] //image with link syntax
fadeimages[2]=["photo3.jpg", "http://www.javascriptkit.com", "_new"] //image with link and target syntax
var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed.
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages2[0]=["photo1.jpg", "", ""] //plain image syntax
fadeimages2[1]=["photo2.jpg", "http://www.cssdrive.com", ""] //image with link syntax
fadeimages2[2]=["photo3.jpg", "http://www.javascriptkit.com", "_new"] //image with link and target syntax
The paths to the images can be relative or absolute, though use absolute if you're not sure.
Bookmarks