728x90
통통 굴러가는 네모 박스
통통 굴러가는 네모 박스를 한번 만들어보겠습니다!
HTML 코드
하단의 예제용 html을 통해 클래스 .box를 만들어줍니다.
<div class="box"></div>
CSS 코드
하단의 예제용 CSS을 통해 통통 굴러가는 애니메이션을 만듭니다.
body {
height: 100vh;
background-image:linear-gradient(to top, #fff, pink)
}
.box {
width: 50px;
height: 50px;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
.box::before {
content: '';
width: 50px;
height: 5px;
background: #000;
position: absolute;
top: 58px;
left: 0;
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: white;
width: 50px;
height: 50px;
position: absolute;
left: 0;
top: 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(67.5deg);
}
100% {
transform: translatey(0px) rotate(90deg);
}
}
결과
상단의 HTML과 CSS를 조합해 구현합니다!
See the Pen moving_box by kimsangjunv1 (@kimsangjunv1) on CodePen.
728x90
반응형
'CSS 애니메이션' 카테고리의 다른 글
점점 Long 해졌다가 Short 해지는 박스 애니메이션 만들기 (11) | 2022.09.22 |
---|---|
CSS로 3D hover 효과를 구현해보자! (5) | 2022.09.20 |
원이 펄럭이는 애니메이션 만들어보기! (3) | 2022.09.19 |
무한으로 뛰어오르는 공 만들어 보자! (7) | 2022.09.02 |
빙글빙글 돌아가는 원 만들기! (12) | 2022.08.29 |
댓글