1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| 'use strict';
const images = [
{ 'src':"Photos/Pascale%20Boyer.jpg" ,'alt':"Pascale Boyer" ,'titre':'Pascale Boye'},
{ 'src':"Photos/Petit%20Maud.jpg" ,'alt':"Petit Maud" ,'titre':'Petit Maud'},
{ 'src':"Photos/Sophie%20Mette.jpg" ,'alt':"Sophie Mette" ,'titre':'Sophie Mette'},
{ 'src':"Photos/Val%C3%A9rie%20Boyer.jpg" ,'alt':"Valérie Boyer" ,'titre':'Valérie Boyer'},
{ 'src':"Photos/Sophie%20Panonacle.jpg" ,'alt':"Sophie Panonacle" ,'titre':'Sophie Panonacle'},
];
const slideshow = document.querySelector('.slideshow');
const slideshow_ul = document.createElement('ul');
slideshow.appendChild(slideshow_ul);
images.forEach( function(image){
let li = document.createElement('li');
let img = document.createElement('img');
img.src = image.src;
img.alt = image.alt;
li.appendChild(img);
let div = document.createElement('div');
div.classList.add('titre');
div.textContent = image.titre;
li.appendChild(div);
slideshow_ul.appendChild(li);
}); |