本文へスキップ

TOP / MOTION LAB / スクロール

スクロール 読了目安 3分

進捗サークル

概要

スクロール量に完全同期して円形ゲージが0%から100%まで満ちていく、実績・達成度・読了率などを見せるピン留め型のアニメーション。

使用技術

実装ポイント

コアスニペット

const circumference = 905;
gsap.fromTo(
  ".progress-circle-main",
  { strokeDasharray: `0, ${circumference}` },
  {
    strokeDasharray: `${circumference}, ${circumference}`,
    ease: "none",
    scrollTrigger: {
      trigger: ".progress-wrapper",
      start: "top top",
      end: "bottom bottom",
      scrub: 0,
      pin: ".section-progress",
      onUpdate: (self) => {
        percentage.innerText = Math.round(self.progress * 100);
      },
    },
  }