1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <html>
<head>
<script>
img = new Array();
img[0] = "images/image1.png";
img[1] = "images/image2.png";
img[2] = "images/image3.png";
img[3] = "images/image4.png";
function changeImage() {
num = Math.round(Math.random()*(img.length-1));
document.getElementById('im').src = img[num];
document.getElementById('inp').value = num;
}
</script>
</head>
<body>
<img id="im" src="images/image5.png"/ onLoad="setTimeout('changeImage()', 1000);" onChange="setTimeout('changeImage()', 1000);">
<input type="text" id="inp">
</body>
</html> |