Ultimate Fade-in slideshow (v1.5)
http://dynamicdrive.com/dynamicindex...nslideshow.htm
Ok now i put this code in my web site, which by the way LOVE the fadder. I am trying to get 4 different arrays to fade 4 different sets of photos. The description states that I am able to do so.
my code looks like this
<script type="text/javascript">
/*****.........****/
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["photo1.gif", "", ""] //plain image syntax
fadeimages[1]=["photo2.gif", "","" ]
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.gif", "", ""] //plain image syntax
fadeimages2[1]=["photo2.gif", "", ""]
fadeimages2[2]=["photo3.gif", "", ""]
var fadeimages3=new Array() //3rd array set example. Remove or add more sets as needed.
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages2[0]=["photo1.gif", "", ""] //plain image syntax
fadeimages2[1]=["photo2.jpg", "",""]
var fadeimages4=new Array() //4th array set example. Remove or add more sets as needed.
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages2[0]=["photo1.gif", "", ""] //plain image syntax
fadeimages2[1]=["photo2.gif", "", ""]
fadeimages2[2]=["photo3.gif", "",""]
fadeimages2[3]=["photo4.gif", "", ""]
var faderbgcolor"#099390"
rest of code
</head>
<body>
some imformation
<table>column 1 still image, column 2 <script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages, 133, 225, 0, 3000, 0,)
</script>
column 3 <script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages2, 133, 225, 0, 3000, 0,)
</script>
column4 <script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages3, 133, 225, 0, 3000, 0,)
</script>
column5 sill image
some more info
then table column 1 still image with text column 2 <script type="text/javascript">
//new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
new fadeshow(fadeimages4, 133, 225, 0, 3000, 0,)
</script>
column 3 still image with text
rest of site.
when i do this nothing shows up and my forth



Reply With Quote

Bookmarks