keyframes 기본

Taek·2020년 7월 31일
0
  animation-name: animationName;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
  
  @keyframes animationName {
    0% {
      width: 0;
    }
    100% {
      width: 100px;
    }
  }

animation-fill-mode값에 both를 지정하면 keyframes 애니메이션이 끝난 이후에도 위치와 크기 값이 유지된다.

0개의 댓글