
  Смотри, как я появляюсь при скролле!



#animated-block {
  opacity: 0;
  transform: translateX(-100px) scale(0.8);
  padding: 40px;
  background: #ffcc00;
  border-radius: 16px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.5s ease;
}



document.addEventListener("DOMContentLoaded", function () {
  gsap.registerPlugin(ScrollTrigger);

  gsap.from("#animated-block", {
    scrollTrigger: {
      trigger: "#animated-block",
      start: "top 80%",
      end: "bottom 20%",
      scrub: true,
      once: true,
    },
    x: -100,
    scale: 0.8,
    opacity: 0,
    duration: 1.2,
    ease: "power3.out"
  });
});
