Skip to main content

Transition

<Transition /> is a component that plays animation with user interaction.

Loading...

Properties

animation, loop 속성을 제외한 다른 속성은 Motion Properties와 동일합니다.

animation (required)

animation 값에 주로 react state를 넣어 값의 변경과 함께 애니메이션이 동작되도록 할 수 있습니다.

const [fontSize, setFontSize] = useState(8);
const [x, setX] = useState(0);

return (
<Transition
animation={{
fontSize: fontSize,
x: x,
}}
>
<Box />
</Transition>
);
Previous
Motion