-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.js
44 lines (41 loc) · 1.08 KB
/
main.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
class Modal {
constructor(modal, target) {
this.isOpen = false;
this.modal = modal;
this.target = target;
this.closeModal = modal.querySelectorAll('[data-close]');
this.target.addEventListener("click", (e) => {
if (this.isOpen) {
return this.close();
}
return this.open();
});
this.closeModal.forEach(item => {
item.addEventListener("click", (e) => {
this.close();
});
});
}
open() {
this.modal.classList.add('show-modal');
setTimeout(() => {
this.animateIn();
}, 10);
}
close() {
this.animateOut();
setTimeout(() => {
this.modal.classList.remove('show-modal');
}, 250);
}
animateIn() {
this.modal.classList.add('animate-modal');
}
animateOut() {
this.modal.classList.remove('animate-modal');
}
}
const modal = new Modal(
document.querySelector('.modal'),
document.querySelector('[data-toggle="modal"]')
)