Skip to content document.addEventListener("DOMContentLoaded", function () {
const galleryItems = document.querySelectorAll(".gallery .gallery-item");galleryItems.forEach(function (item) {
const img = item.querySelector("img");
if (!img) return;const imgSrc = img.getAttribute("src");
const fullImgSrc = imgSrc.replace(/-\d+x\d+/, ''); // Xoá kích thước thumbnail để lấy ảnh gốc// Tạo thẻ bọc quanh ảnh
const link = document.createElement("a");
link.href = fullImgSrc;
link.setAttribute("data-fancybox", "gallery");img.parentNode.insertBefore(link, img);
link.appendChild(img);
});// Kích hoạt Fancybox
Fancybox.bind("[data-fancybox='gallery']", {
Thumbs: { autoStart: true }
});
});