const openBtn = document.querySelector(".modal-open-btn");
const closeBtn = document.querySelector(".modal-close-btn");
var modal = document.querySelector(".modal-overlay");
function openModal() {
modal.classList.add("display");
}
function closeModal() {
modal.classList.remove("display");
}
openBtn.addEventListener("click", openModal);
closeBtn.addEventListener("click", closeModal);
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter