bonjour
je ne trouve pas comment tourner mon diaporama en boucle. quel fonction ajouter?
Merci de votre aide
je ne trouve pas comment tourner mon diaporama en boucle. quel fonction ajouter?
<!DOCTYPE html PUBLIC>
<html>
<head>
<meta charset="utf-8" />
<title>exercice15</title>
<script src="diapo.js"></script>
</head>
<body>
<img src="1.jpg" id="pic"/>
</body>
</html>
var Img=new Array;
Img[0]="1.jpg";
Img[1]="2.jpg";
Img[2]="3.jpg";
var i=0;
function change(index) {
document.getElementById('pic').src=Img[index];
i++;
if (i < Img.length)
{
setTimeout('change(i)',1500); } }
setTimeout('change(i)',1500);
Merci de votre aide