How to create image simple image slider using javascript
<html>
<head>
<script language="JavaScript">
var i = 0;
var path = new Array();
// LIST OF IMAGES
path[0] = "image_1.gif";
path[1] = "image_2.gif";
path[2] = "image_3.gif";
function swapImage()
{
document.slide.src = path[i];
if(i < path.length - 1) i++; else i = 0;
setTimeout("swapImage()",3000);
}
window.onload=swapImage;
</script>
</head>
<body>
<img height="200" name="slide" src="image_1.gif" width="400" />
<body>
</html>
No comments:
Post a Comment