mirror of
https://codeberg.org/Kankys/musicCalendar.git
synced 2026-01-01 08:12:53 +00:00
nová sekce about, nové grafické rozhraní
This commit is contained in:
10
scriptabout.js
Normal file
10
scriptabout.js
Normal 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)";
|
||||
});
|
||||
Reference in New Issue
Block a user