scss적용 안됐던 이유
웹팩 공식 설정을 안봐서..
(x)
@import url('./_home.scss');
@import url('./_hexColors.scss');
(o)
@import '_home.scss';
@import '_hexColors.scss';
.hex-color_container {
...
animation: changeColor 5s infinite alternate;
한번 실행 시 5초 / 무한 반복 / 지정된 방향 -> 반대 방향 순
@keyframes changeColor {
0% {
color: indigo;
}
20% {
color: blue;
}
40% {
color: green;
}
60% {
color: yellow;
}
80% {
color: orange;
}
100% {
color: red;
}
}
}
리액트는 전부 재렌더링 할텐데 어떻게 구현할까?