-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
47 lines (33 loc) · 1.18 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
fetch('./JSON/NikolaTesla.json')
.then(response => response.json())
.then(data => {
const itemList = document.querySelector('.item-list');
data.NikolaTesla.forEach(nikola => {
const item = document.createElement('li');
item.innerHTML = `<img src="${ nikola.Image }">`;
item.addEventListener('click', () => showDetails(nikola));
itemList.appendChild(item);
});
});
function showDetails (nikola) {
const modal = document.querySelector('#details-modal');
modal.innerHTML = `
<div class="modal-content">
<img src="${ nikola.Image }">
<p>${ nikola.Date }</p>
<p>${ nikola.Prompt }</p>
<button id="close-modal">Close</button>
</div>
`;
modal.style.display = 'flex';
const closeButton = document.querySelector('#close-modal');
closeButton.addEventListener('click', () => {
modal.style.display = 'none';
});
}
const modal = document.querySelector('#details-modal');
window.addEventListener('click', (event) => {
if (event.target === modal) {
modal.style.display = 'none';
}
});