본문 바로가기

CSS

[css] webkit keyframes

반응형
.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);
  }
}

애니메이션 사용 선언

반응형

'CSS' 카테고리의 다른 글

[CSS] 크롬과 shadow 관련  (0) 2022.01.20
[css] 디버깅  (0) 2022.01.20
[css] css 관련 요즘 추세 볼 수 있는 사이트  (0) 2022.01.20
[css] cubic-bezier  (0) 2021.03.16
[CSS] 부트스트랩, materialize, semantic-ui 사이트  (0) 2021.03.11