본문 바로가기
CSS

움직이는 애니메이션 1

by SyuMay 2022. 8. 29.
728x90

애니메이션1

박스가 땅에닿으면 뭉게지는 애니메이션을 만들어봤습니다.


HTML코드

<div class="box"></div>

css코드

body {
  height: 100vh;
  background-image: linear-gradient(to top, skyblue, pink);
  position: relative;
  overflow: hidden;
} 

.box {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.box::before {
  content: '';
  width: 50px;
  height: 5px;
  position: absolute;
  top: 58px;
  left: 0;
  background-color: #000;
  border-radius: 50%;
  opacity: 0.2;
  animation: shadow 0.6s linear infinite;
}
@keyframes shadow {
  0% { transform: scale(1, 1);}
  50% { transform: scale(1.2,1);}
  100% { transform: scale(1, 1);}
}

.box::after {
  content: '';
  background-color: yellow;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
  animation: load 0.6s linear infinite;
}

@keyframes load {
  17% { border-bottom-right-radius: 3px; }
  25% { transform: translatey(9px) rotate(22.5deg);}
  50% { 
    transform: translatey(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% { transform: translatey(9px) rotate(97.5deg);}
  100% { transform: translatey(0px) rotate(90deg);}
}
728x90
반응형

'CSS' 카테고리의 다른 글

요소숨기기  (4) 2022.08.29
움직이는 애니메이션2  (8) 2022.08.29
색상표현  (7) 2022.08.24
단위  (4) 2022.08.24
이미지스프라이트  (4) 2022.08.22

댓글


자바스크립트 사진

JavaScript

자세히보기