nová sekce about, nové grafické rozhraní

This commit is contained in:
2025-12-24 01:55:16 +01:00
parent ea40bbb8a0
commit 36bc232106
9 changed files with 265 additions and 50 deletions

10
scriptabout.js Normal file
View File

@@ -0,0 +1,10 @@
// --- 5. Photo Gallery -> section (zoom)
const img = document.querySelector(".zoom");
img.addEventListener("mouseenter", () => {
img.style.transform = "scale(10.2)";
});
img.addEventListener("mouseleave", () => {
img.style.transform = "scale(1)";
});