new updates

This commit is contained in:
2026-05-25 17:41:07 +02:00
parent ea63897455
commit 025f097b68
713 changed files with 71578 additions and 1958 deletions

View File

@@ -0,0 +1,24 @@
document.addEventListener("DOMContentLoaded", function () {
const reveal = document.querySelector(".page-reveal");
if (!reveal || typeof gsap === "undefined") return;
gsap.set(reveal, {
y: 0,
scaleY: 1
});
gsap.to(reveal, {
scaleY: 0,
duration: 1.5,
ease: "expo.inOut",
delay: 0.1,
force3D: true,
clearProps: "transform",
onComplete() {
reveal.remove();
}
});
});