-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
27 lines (26 loc) · 841 Bytes
/
script.js
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
27
const pets = [
{ name: 'Jumanji', img: 'images/pets/jumanji-dog1.jpg' },
{ name: 'Cido', img: 'images/pets/cido-dog2.jpg' },
{ name: 'JavaScript', img: 'images/pets/javascript-dog3.jpg' },
{ name: 'Elliot', img: 'images/pets/elliot-dog4.jpg' },
{ name: 'Pulguento', img: 'images/pets/pulguento-dog5.jpg' },
{ name: 'Paçoca', img: 'images/pets/pacoca-dog6.jpg' },
];
const div = document.querySelector('.cards');
if (!pets.length) {
div.style.justifyContent = 'center';
div.innerHTML = `
<h3 class="no-pets">
Não há nenhum pet para adoção ainda! 🥰
</h3>
`;
} else {
pets.forEach((pet) => {
div.innerHTML += `
<figure class="card">
<img src="${pet.img}" alt="Imagem de um cachorro chamado ${pet.name}">
<figcaption>${pet.name}</figcaption>
</figure>
`;
});
}