Scan d'un dossier image, lecture des images une par une en boucle
Scan d'un dossier image, lecture des images une par une en boucle - HTML/CSS - Programmation
MarshPosté le 16-11-2010 à 11:34:24
hello à tous,
Je cherche un script qui scannerait un dossier d'images et les afficherait une par une sur une page web.
Pour l'instant j'ai juste le sript en java qui fait défiler les images une à une en boucle. Mais il faut modifier le sript pour chaque nouvelle image ajoutée ce que je souhaite éviter. Donc j'aimerai juste balancer l'image ds le dossier et hop c'est ds la boite.
Code :
<script LANGUAGE="JavaScript">
var imgs=new Array();
imgs[0]="photos/01.jpg";
imgs[1]="photos/02.jpg";
imgs[2]="photos/03.jpg";
imgs[3]="photos/04.jpg";
imgs[4]="photos/05.jpg";
imgs[5]="photos/06.jpg";
imgs[6]="photos/07.jpg";
imgs[7]="photos/08.jpg";
imgs[8]="photos/09.jpg";
imgs[9]="photos/10.jpg";
imgs[10]="photos/11.jpg";
imgs[11]="photos/12.jpg";
imgs[12]="photos/13.jpg";
imgs[13]="photos/14.jpg";
imgs[14]="photos/15.jpg";
imgs[15]="photos/16.jpg";
imgs[16]="photos/17.jpg";
imgs[17]="photos/18.jpg";
imgs[18]="photos/19.jpg";
imgs[19]="photos/20.jpg";
imgs[20]="photos/21.jpg";
imgs[21]="photos/22.jpg";
imgs[22]="photos/23.jpg";
var cpt=0;
function changeimages()
{
document.getElementById("ima" ).src=imgs[cpt];
cpt++;
if(cpt>=imgs.length) cpt=0;
setTimeout("changeimages()",3500);
}
</script>
Code :
<body onLoad="changeimages()">
Code :
<img id="ima" name="ima" class="random" src="photos/01.jpg" alt="Un oeil sur le monde" title="blablabla"/></noscript>
Marsh Posté le 16-11-2010 à 11:34:24
hello à tous,
Je cherche un script qui scannerait un dossier d'images et les afficherait une par une sur une page web.
Pour l'instant j'ai juste le sript en java qui fait défiler les images une à une en boucle. Mais il faut modifier le sript pour chaque nouvelle image ajoutée ce que je souhaite éviter. Donc j'aimerai juste balancer l'image ds le dossier et hop c'est ds la boite.
Pouriez vous m'aider ?
merci
a+
---------------
ploum ploum tralala