Changing Picture on Home Page

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

Guest

I've got a familiy website with an index file that is mostly the menu on the
left and an image. I'd like the image to change and cycle through the
library of images in the /images directory on my site.

Assuming I've got the pictures set up right (same dimensions and extensions
and all) how do I write the html to do this?

-Jacob
 
If you use Front Page, then go to Add Banner, which will rotate your images,
basically its an applet things.
 
This was great, Is there a way to have the pictures fade in and out instead
of the sharp transition?
 
How do you change the Location of where this Script pull sthe pictures from?
I tried modifying the image list parm but the Script won't load the files...
e.g.,

image_list[image_index++] = new imageItem("E:\my images\water fall.jpg");

When I move this to the Server, I'd lik the images to default to the "root"
Image directory... How would I code that? Are spaces in the files acceptable?
Sorry, new to JavaScript.

Thanks
 
Do not use spaces in file or folder names.

Manual insert an image on the page from the location that you want to store it in, in your web, then
switch to html/code view and copy the path to use in your script.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================

Cody21 said:
How do you change the Location of where this Script pull sthe pictures from?
I tried modifying the image list parm but the Script won't load the files...
e.g.,

image_list[image_index++] = new imageItem("E:\my images\water fall.jpg");

When I move this to the Server, I'd lik the images to default to the "root"
Image directory... How would I code that? Are spaces in the files acceptable?
Sorry, new to JavaScript.

Thanks


Kathleen Anderson said:
You can do that with JavaScript:
http://javascript.internet.com/miscellaneous/random-image-rotator.html

--
~ Kathleen Anderson
Microsoft MVP - FrontPage
Spider Web Woman Designs
web: http://www.spiderwebwoman.com/resources/
 
Back
Top