本文へスキップ

TOP / MOTION LAB / オープニング

オープニング 読了目安 3分

オープニング(ポップ)

概要

「HELLO!」表示のあと、黒→ピンク→黄色の3層が円形マスクで次々と閉じて消え、ポップな背景ヒーローがバウンドしながら組み上がる、鮮やかで元気なオープニング。

使用技術

実装ポイント

コアスニペット

// 3層を circle(0%) へ収縮、"-=0.6" ずつ重ねて中心へ吸い込む連鎖
tl.to(".layer-1", {
  duration: 0.7,
  clipPath: "circle(0% at 50% 50%)",
  ease: "expo.inOut",
}, "+=0.1")
  .to(".layer-2", { duration: 0.7, clipPath: "circle(0% at 50% 50%)", ease: "expo.inOut" }, "-=0.6")
  .to(".layer-3", { duration: 0.7, clipPath: "circle(0% at 50% 50%)", ease: "expo.inOut" }, "-=0.6");