-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodal.js
68 lines (58 loc) · 1.98 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
const dispPopUp = () => {
let modal = document.getElementById("myModal");
modal.style.display = "block";
};
const restartfn = () => {
location.reload();
};
const closefn = () => {
window.close();
};
// const popupOver = () => {
// let modalContent = document.getElementById("modal-content");
// let modalText = document.createElement("div");
// modalText.classList.add("modalText");
// modalText.innerHTML = `GAME OVER!!!`;
// modalContent.appendChild(modalText);
// let modalBtn = document.createElement("div");
// modalBtn.classList.add("modalBtn");
// modalContent.appendChild(modalBtn);
// let restart = document.createElement("button");
// restart.innerHTML = `RESTART`;
// restart.classList.add("btn");
// restart.addEventListener("click", restartfn);
// let close = document.createElement("button");
// close.innerHTML = `EXIT`;
// close.addEventListener("click", closefn);
// close.classList.add("btn");
// modalBtn.appendChild(restart);
// modalBtn.appendChild(close);
// dispPopUp();
// // setTimeout(() => {
// // dispPopUp();
// // }, 500);
// };
const popup = (text) => {
let modalContent = document.getElementById("modal-content");
let modalText = document.createElement("div");
modalText.classList.add("modalText");
modalText.innerHTML = `${text}!!!`;
modalContent.appendChild(modalText);
let modalBtn = document.createElement("div");
modalBtn.classList.add("modalBtn");
modalContent.appendChild(modalBtn);
let restart = document.createElement("button");
restart.innerHTML = `RESTART`;
restart.classList.add("btn");
restart.addEventListener("click", restartfn);
let close = document.createElement("button");
close.innerHTML = `EXIT`;
close.addEventListener("click", closefn);
close.classList.add("btn");
modalBtn.appendChild(restart);
modalBtn.appendChild(close);
dispPopUp();
// setTimeout(() => {
// dispPopUp();
// }, 500);
};