728x90
반응형
두개의 원이 돌고있는 애니메이션
2개의 원이 돌고있는 애니메이션을 만들었습니다.
HTML
원을 두개 만듭니다.
<div class="loading">
<span class="circle1"></span>
<span class="circle2"></span>
</div>
CSS
keyframes을 만든 뒤, transform으로 움직임을 부여합니다.
body {
height: 100vh;
background-image: linear-gradient(-60deg, #495C83 0%, #C8B6E2 100%);
}
.loading {
position: absolute;
left: 50%;
top: 50%;
width: 20px;
height: 150px;
animation: loading 1s ease 100;
}
.loading .circle1 {
display: block;
width: 20px;
height: 20px;
border-radius: 50%;
background: #fff;
}
.loading .circle2 {
display: block;
width: 20px;
height: 20px;
border-radius: 50%;
background: #fff;
margin-top: 110px;
}
@keyframes loading {
0% {transform: translate(-50%, -50%) rotate(0deg)}
100% {transform: translate(-50%, -50%) rotate(360deg)}
}
결과
See the Pen bng by kimyihyung (@kimyihyung) on CodePen.
728x90
반응형
'CSS' 카테고리의 다른 글
SVG - animation (7) | 2022.09.07 |
---|---|
잔상 공 애니메이션 (4) | 2022.09.02 |
움직이는 박스 애니메이션 (8) | 2022.08.29 |
CSS 요소 숨기기 (6) | 2022.08.25 |
CSS 색상 표현 (5) | 2022.08.24 |