문제의 애니메이션 찾기

Untitled

Untitled

const BarGraph = styled.div`
    position: absolute;
    left: 0;
    top: 0;
    width: ${({ width }) => width}%;
    transition: width 1.5s ease;
    height: 100%;
    background: ${({ isSelected }) => isSelected ? 'rgba(126, 198, 81, 0.7)' : 'rgb(198, 198, 198)'};
    z-index: 1;
`

애니메이션의 원리

애니메이션의 원리는 여러 장의 이미지를 빠르게 전환하여 우리 눈에 잔상을 남기고, 그로 인해 연속된 이미지가 움직이는 것처럼 느껴지게 하는 것임

Untitled

Untitled