-
Notifications
You must be signed in to change notification settings - Fork 2
/
modal.js
34 lines (26 loc) · 898 Bytes
/
modal.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
'use strict';
/* eslint-disable camelcase */
document.addEventListener('DOMContentLoaded', (event) => {
// Get the modal
const modal = document.getElementById('info-modal');
// Get the button that opens the modal
const btn = document.getElementById('info');
// Get the <span> element that closes the modal
const span = document.getElementsByClassName('close')[0];
// Display the modal when the page loads
modal.style.display = 'block';
// When the user clicks the button, open the modal
btn.onclick = function () {
modal.style.display = 'flex';
};
// When the user clicks on <span> (x), close the modal
span.onclick = function () {
modal.style.display = 'none';
};
// When the user clicks anywhere outside of the modal, close it
window.onclick = function (event) {
if (event.target === modal) {
modal.style.display = 'none';
}
};
});