Overview
A vertical column of pills scrolls. As each pill crosses center it bumps to the accent color. The last pill settles.
Build
- 01
Column keyframe-scrolls.
- 02
Per-pill bump at precomputed crossing times.
- 03
Last pill settles (no bump-back).
.col { animation: pills-column-scroll }
.pill { animation: pill-bump; animation-delay: var(--cross) }Example source React / TSX
examples/pill-column-scroll.tsx · Uses the catalog’s shared composition helpers.
Loading source…