<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
body {
  background: #000000;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  background: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 10px;
}
gsap.fromTo(".circle", 
  { y: -30 },
  { y: 30,
    ease: "power1.inOut", // 進行具合
    stagger: {
      each: 0.15, // アニメーション間の時間
      repeat: -1, // 無限に繰り返し
      yoyo: true  // アニメーションの反復
   }
});

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://unpkg.co/gsap@3/dist/gsap.min.js