.entering {
opacity: 0;
}
.entered {
animation: popup 400ms ease-out;
}
.exiting {
animation: unpopup 400ms ease-out;
}
.exited {
opacity: 0;
}
@keyframes popup {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes unpopup {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
메인-프로젝트/React - Do-Health 프로젝트
댓글