<html>
<head>
<title>Images aléatoires</title>
</head>
<script LANGUAGE="JavaScript">
<!--
document.write("<body>");
var tab = new Array("aaa.gif","bbb.gif","ccc.gif");
//remplacez aaa, bbb
et ccc par vos images
var n = parseInt( Math.random()
* tab.length)
while (isNaN(n)) {
n = parseInt(
Math.random() * tab.length)
}
document.write("<img
src='images/" + tab[n] + "' alt='Image aléatoire'>");
//-->
</script>
</body>
</html> |