|
|
|
@ -16,3 +16,10 @@ window.addEventListener("load", function () {
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const imageButton = document.getElementById("show-image");
|
|
|
|
|
|
|
|
|
|
imageButton.addEventListener("click", (e) => {
|
|
|
|
|
let img = document.querySelector("img");
|
|
|
|
|
img.classList.toggle("visible");
|
|
|
|
|
});
|
|
|
|
|