Skip to content
UIGrammer
EN 中文

Animation · Morph & transform · 17

Flip Card

Flip Card = a card that rotates in 3D on its Y axis to reveal a different face (front/back) on hover or tap.

Skip to the modify prompt

Front
Back

Respects prefers-reduced-motion: the animation is disabled and the final state is shown.

What is a Flip Card?

A flip card rotates around its vertical axis to show a back face — front holds the teaser, back holds the detail. It is a compact two-state container that feels physical because it uses real perspective. Flip on hover for desktop, on tap for touch, and keep it to one axis so it never looks like a glitch.

Animation Specimen

Trigger
hover
Tech
css
Duration
3.2s
Easing
cubic-bezier(0.4, 0, 0.2, 1)
Performance
transform

When to use

  • Teaser -> detail (product, profile, glossary term)
  • Two-sided stats or Q&A cards

Avoid when

  • When both faces must be visible at once (use tabs)
  • On tiny touch targets — the back is hard to read

Give the parent real perspective, or the flip looks like a flat skew, not a turn.

See also

Make a flip card: rotateY 0 to 180 on hover with perspective, front and back faces, transform only.