- Tên dự án: Khu đô thị Bắc Đầm Vạc
- Vị trí: Đầm Vạc, phường Đống Đa, TP. Vĩnh Yên, tỉnh Vĩnh Phúc
- Chủ đầu tư: Công ty cổ phần Sông Hồng Hoàng Gia
- Diện tích tổng thể: 58,6503ha
- Đất quảng trường: 1.7ha
- Đất resort: 5.6ha
- Đất Y tế văn hóa giáo dục: 1.2ha
Liện hệ 0978397994
- Tên dự án: Khu đô thị Bắc Đầm Vạc
- Vị trí: Đầm Vạc, phường Đống Đa, TP. Vĩnh Yên, tỉnh Vĩnh Phúc
- Chủ đầu tư: Công ty cổ phần Sông Hồng Hoàng Gia
- Diện tích tổng thể: 58,6503ha
- Đất quảng trường: 1.7ha
- Đất resort: 5.6ha
- Đất Y tế văn hóa giáo dục: 1.2ha
Liện hệ 0978397994
{
if (img.dataset.checked) return;
img.dataset.checked = "1";
function replaceIfBroken() {
if (
!img.complete ||
img.naturalWidth === 0 ||
img.naturalHeight === 0
) {
img.src = FALLBACK;
}
}
img.onerror = replaceIfBroken;
if (img.complete) {
replaceIfBroken();
} else {
img.addEventListener("load", replaceIfBroken);
}
});
root.querySelectorAll("iframe, video").forEach(el => {
if (el.dataset.checked) return;
el.dataset.checked = "1";
el.onerror = function () {
const img = document.createElement("img");
img.src = FALLBACK;
img.style.width = "100%";
el.replaceWith(img);
};
});
}
fixBrokenImages();
const observer = new MutationObserver(mutations => {
mutations.forEach(m => {
m.addedNodes.forEach(node => {
if (node.nodeType === 1) {
fixBrokenImages(node);
}
});
});
});
observer.observe(document.body, {
childList: true,
subtree: true
});
})();