Hi... I'm trying to create a slideshow in my website using html text, and i'm having some problems. Can anybody help?
This is my text:
<html>
<head>
<script type="text/javascript">
<!--
var image1=new Image()
image1.src="Travel1.JPG"
var image2=new Image()
image2.src="Nature5.JPG"
var image3=new Image()
image3.src="Nature3.JPG"
//-->
</script>
</head>
<body>
<img src="Travel1.JPG" name="slide" width="512" height="384" />
<script>
<!--
//variable that will increment through the images
var step=1
function slideit(){
//if browser does not support the image object, exit.
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src")
if (step<3)
step++
else
step=1
//call function "slideit()" every 2.5 seconds
setTimeout("slideit()",2500)
}
slideit()
//-->
</script>
</body>
</html>