본문으로 건너뛰기

Transition

<Transition /> 은 주로 사용자의 인터렉션과 함께 실행되는 애니메이션입니다.

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>
);
이전
Motion