import styled, { keyframes } from 'styled-components';
const indeterminateAnimation = keyframes`
from {
transform: translateX(0) scaleX(0.5);
}
to {
transform: translateX(400%) scaleX(0.5);
}
`;
const Progressor = styled.div`
position: absolute;
top: 0;
height: 4px;
width: 30%;
background-color: yellow
animation: ${indeterminateAnimation} 1s infinite linear;
transform-origin: 0 50%;
`;
withconfig is undefined
keyframes is not a function 같은 에러가 뜬다면
styled.keyframes``;(X) -> keyframes``;(O)
확인하고 from to 로 바꿔서 해보자
'FE > Vanilla' 카테고리의 다른 글
배열을 const 로 선언했을 때, 왜 push와 pop이 가능할까 (state 배열) (5) | 2021.08.23 |
---|---|
webstorm 전체검색이 되지 않는 현상 (2) | 2021.07.20 |
addEventListener scroll 에서 변화량 확인하기 (0) | 2021.06.22 |
swiper 에서 뭐 아무튼 width 나 margin이 애매할때 (0) | 2021.04.06 |
swiper slide 가 세로로 정렬될 때 (7) | 2021.04.06 |