javascript gotoshow

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a question on how to load my own images on the fade in/out picture show.

What format do they need to be in in the HTML code? I am confused.

Thanks!
Jill
 
That sort of helped, but what I am asking is how do I put my images in the
slide show? Where and how do I get them to show up?
 
Have you reviewed the instruction for configuring the script?

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================
 
To add
if you choose the second script I beleive you would put the image path
seperatally (third line down at the end, change images/ to your image path)
then just the name of the images in that folder fourth line down


<script type="text/javascript">
// rotation speed, path to images
var rotator1 = new dw_RandRotator(4000, "images/");
var imgList = ["img1.gif", "img2.gif", more images ...];
// images array, width and height of images, transition filter (boolean)
rotator1.setUpImage(imgList , 150, 150, true);
</script>
 
Back
Top