1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| var chemin = 'http://club.developpez.com/webdesign/Rubriques/Web/JavaScript/';
var tabImages = ['image_1.gif','image_2.gif','mini_logo_cours_javascript.gif','image_3.gif'];
function chargeImage(ind){
var oImage = new Image();
oImage.onerror = function(){
ind++;
if( ind < tabImages.length){
chargeImage( ind);
}
};
oImage.onload = function(){
var oDest = document.getElementById('conteneur_image');
oDest.appendChild( oImage);
};
oImage.src= chemin + tabImages[ind];
}
chargeImage(0); |
Partager