I found this modal I'm using on Codepen https://codepen.io/benfrain/pen/wvayeWq and wondering how I can make the modal fade in and out rather than just popping in and out.
Thank you in advance.
var btn = document.getElementById("btn");
btn.addEventListener("click", e => {
document.documentElement.setAttribute("data-modal-active",
document.documentElement.getAttribute("data-modal-active") === "true" ? "false" : "true")
});
aside {
position: absolute;
z-index: 100;
background-color: #777;
top: 50%;
left: 50%;
overflow: auto;
max-height: 80vh;
transform: translate(-50%, -50%);
display: none;
flex-direction: column;
[data-modal-active="true"] & {
display: flex;
}
}