CSS

[css] webkit keyframes

우니010 2021. 3. 16. 16:46
반응형
.box {
  animation-name: boxKeyframes;
  -webkit-animation-duration: 170ms;
}

@-webkit-keyframes boxKeyframes{
  from{
    background-color: rgba(0,0,0,0);
  }
  to {
    background-color: rgba(0,0,0,0.7);
  }
}

애니메이션 사용 선언

반응형