본문 바로가기
HTML,CSS,JS

CSS) animation 사용

by 우박비 2021. 2. 3.

예시) 드랍다운 메뉴박스 만들기

@keyframes top-bar-menu__drop-down {
  0% {
   	height :0;
  }

  100% {
    height: initial;
  }
}

height가 0 에서 원래의 height로 늘어나는 애니메이션