Back to Popmotion

Accordion

packages/popmotion-pose/docs/examples/react/accordion.md

8.7.1308 B
Original Source

Accordion

Pose supports animating between any unit type for width and height, including 'auto'.

This makes it trivial to create accordion animations.

javascript
const Content = posed.div({
  closed: { height: 0 },
  open: { height: 'auto' }
});
<CodeSandbox id="pwk5yq8pzx" height="500" />