Set up opacity transition
This commit is contained in:
parent
415a2f6ba0
commit
660d23d9eb
|
@ -3,12 +3,25 @@
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
#popup-container {
|
||||
.popup-container {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
background-color: #ffffff;
|
||||
opacity: 1;
|
||||
transition: background-color 0.5s ease-in, opacity 0.5s ease-in;
|
||||
}
|
||||
|
||||
.popup-container.show {
|
||||
background-color: #000000;
|
||||
opacity: 40%;
|
||||
}
|
||||
|
||||
#trigger-modal,
|
||||
.popup-modal {
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.popup-modal {
|
||||
|
@ -21,6 +34,6 @@
|
|||
visibility: hidden;
|
||||
}
|
||||
|
||||
.show {
|
||||
.popup-modal.show {
|
||||
visibility: visible;
|
||||
}
|
||||
|
|
|
@ -8,12 +8,12 @@
|
|||
<link rel="stylesheet" href="solution.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="popup-container">
|
||||
<button id="open-modal">Click Me!</button>
|
||||
<div class="popup-modal">
|
||||
<p>Hey there!</p>
|
||||
<button id="close-modal">X</button>
|
||||
</div>
|
||||
<div class="popup-container">
|
||||
<button id="trigger-modal">Click Me!</button>
|
||||
</div>
|
||||
<div class="popup-modal">
|
||||
<p>Hey there!</p>
|
||||
<button id="close-modal">X</button>
|
||||
</div>
|
||||
<script src="solution.js"></script>
|
||||
</body>
|
||||
|
|
|
@ -1,14 +1,18 @@
|
|||
const openButton = document.getElementById('open-modal');
|
||||
const openButton = document.getElementById('trigger-modal');
|
||||
const closeButton = document.getElementById('close-modal');
|
||||
|
||||
function openModal() {
|
||||
const container = document.querySelector('.popup-container');
|
||||
const modalDiv = document.querySelector('.popup-modal');
|
||||
modalDiv.classList.add('show');
|
||||
container.classList.add('show');
|
||||
}
|
||||
|
||||
function closeModal() {
|
||||
const container = document.querySelector('.popup-container.show');
|
||||
const modalDiv = document.querySelector('.popup-modal.show');
|
||||
modalDiv.classList.remove('show');
|
||||
container.classList.remove('show');
|
||||
}
|
||||
|
||||
openButton.addEventListener('click', openModal);
|
||||
|
|
Loading…
Reference in New Issue