-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodal.html
More file actions
85 lines (81 loc) · 2.16 KB
/
Copy pathmodal.html
File metadata and controls
85 lines (81 loc) · 2.16 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{
margin: 0;
padding: 0;
}
ul {
list-style: none;
}
button {
all: unset;
background-color: tomato;
padding: 10px 15px;
}
.hidden {
display: none;
}
.modal {
}
.modal-overlay{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
}
.modal-content{
margin: 0 auto;
background-color: #fff;
width: 30%;
height: 30vh;
}
.modal-content > button{
position: relative;
}
.modal-content > div {
margin: 20px;
}
</style>
</head>
<body>
<button class="open_btn">열기</button>
<div class="modal hidden">
<div class="modal-overlay">
<div class="modal-content">
<button><</button>
<div>
<h2>2021-10-23</h2>
<br>
<ul>
<li>러닝</li>
<li>스쿼드</li>
<li>푸쉬업</li>
</ul>
</div>
</div>
</div>
</div>
<script>
const modalOpenBtn = document.querySelector(".open_btn");
const modal = document.querySelector(".modal");
const modalCloseBtn = modal.querySelector("button");
const modalOverlay = modal.querySelector(".modal-overlay");
const HIDDEN = "hidden";
const modalBtn = () => {
modal.classList.toggle(HIDDEN);
}
modalOpenBtn.addEventListener("click", modalBtn);
modalCloseBtn.addEventListener("click", modalBtn);
</script>
</body>
</html>