-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodal_window.html
93 lines (81 loc) · 2.17 KB
/
modal_window.html
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
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="./css/modal.css" />
</head>
<body>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
.modal {
display: flex; /* Hidden by default */
position: flex;
right: 0;
bottom: 0;
z-index: 1500;
width: 100%; /* Full width */
border: 40px;
top: 50%;
bottom: 50%;
background-color: rgb(255, 0, 0); /* Fallback color */
background-color: rgba(0, 0, 0, 0); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
background-color: #fefefe;
margin: 0;
padding: 20px;
border: 1px solid #888;
width: auto;
border: 40px;
border-radius: 40px;
}
/* The Close Button */
.close {
color: #ff0000;
float: right;
font-size: 28px;
font-weight: bold;
}
.close p {
text-align: center;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
</style>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>User Already Exist</p>
</div>
</div>
<script>
// Get the modal
var modal = document.getElementById("myModal");
// Get the button that opens the modal
var btn = document.getElementById("submit");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
modal.style.display = "block";
// 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";
}
};
</script>
</body>
</html>