ONEDİOBLOG

Gündem & Son Yazılar

document.addEventListener("DOMContentLoaded", () => { const overlay = document.createElement("div"); overlay.className = "page-transition-overlay"; document.body.appendChild(overlay); document.querySelectorAll("a").forEach(link => { if ( link.hostname === window.location.hostname && !link.hash && !link.getAttribute("target") && !link.href.includes("wp-admin") ) { link.addEventListener("click", (e) => { e.preventDefault(); const destination = link.href; overlay.classList.add("is-animating"); setTimeout(() => { window.location.href = destination; }, 350); }); } }); });