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

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.
 

Code :
  1. <script LANGUAGE="JavaScript">
  2. var imgs=new Array();
  3. imgs[0]="photos/01.jpg";
  4. imgs[1]="photos/02.jpg";
  5. imgs[2]="photos/03.jpg";
  6. imgs[3]="photos/04.jpg";
  7. imgs[4]="photos/05.jpg";
  8. imgs[5]="photos/06.jpg";
  9. imgs[6]="photos/07.jpg";
  10. imgs[7]="photos/08.jpg";
  11. imgs[8]="photos/09.jpg";
  12. imgs[9]="photos/10.jpg";
  13. imgs[10]="photos/11.jpg";
  14. imgs[11]="photos/12.jpg";
  15. imgs[12]="photos/13.jpg";
  16. imgs[13]="photos/14.jpg";
  17. imgs[14]="photos/15.jpg";
  18. imgs[15]="photos/16.jpg";
  19. imgs[16]="photos/17.jpg";
  20. imgs[17]="photos/18.jpg";
  21. imgs[18]="photos/19.jpg";
  22. imgs[19]="photos/20.jpg";
  23. imgs[20]="photos/21.jpg";
  24. imgs[21]="photos/22.jpg";
  25. imgs[22]="photos/23.jpg";
  26. var cpt=0;
  27. function changeimages()
  28. {
  29. document.getElementById("ima" ).src=imgs[cpt];
  30. cpt++;
  31. if(cpt>=imgs.length) cpt=0;
  32. setTimeout("changeimages()",3500);
  33. }
  34. </script>


 

Code :
  1. <body onLoad="changeimages()">


 

Code :
  1. <img id="ima" name="ima" class="random" src="photos/01.jpg" alt="Un oeil sur le monde" title="blablabla"/></noscript>


 
Pouriez vous m'aider ?
merci
 
a+
 


---------------
ploum ploum tralala
Reply

Marsh Posté le 16-11-2010 à 11:34:24   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed