钉住叙事

左侧画面 pin 住,右侧文案换段的同时,用同一条 scrub 时间线改形状/颜色。向下多滚一会儿。

01 出现

色块从中心放大,对应产品「诞生」。

02 延展

变成宽条,对应「能力铺开」。

03 收束

变圆并换色,对应「形成一个结论」。

叙事结束,文档流恢复。

const tl = gsap.timeline({
  scrollTrigger: {
    trigger: "#story",
    start: "top 80px",
    end: "bottom bottom",
    pin: ".visual",
    scrub: 1
  }
});
tl.to("#blob", { borderRadius: "8px", scaleX: 1.4 })
  .to("#blob", { borderRadius: "50%", background: "#10b981", scaleX: 1 });