Wednesday, May 16, 2012

loop a series of image in javascript

i want to loop a series of image in javascript. below is the code i have so far



<html>
<head>
</head>

<body>
<img src="images/image1.jpg" alt="rotating image" width="600" height="500" id="rotator">

<script type="text/javascript">
(function() {
var rotator = document.getElementById('rotator'); // change to match image ID
//var imageDir = 'images/'; // change to match images folder
var delayInSeconds = 1; // set number of seconds delay
// list image names
var images = ['1.jpg','2.jpg', '3.jpg', '4.jpg'];

// don't change below this line
var num = 0;
var changeImage = function() {
var len = images.length;
rotator.src = images[num++];
if (num == len) {
num = 0;
}
};
setInterval(changeImage, delayInSeconds * 50);
})();
</script>
</body>
</html>


it can only display the image i declare in the "var image". if i have 10000 image , how to do that . i have try using a for loop but it failed .. any suggestions ?? thanks in advance





No comments:

Post a Comment