- infinity rotate 애니메이션 예제2022년 05월 11일
- 루루개발자
- 작성자
- 2022.05.11.:32
반응형안녕하세요. 루루개발자 입니다.
이번 시간에는 css 로 특정 요소를 무한 회전시키는 애니메이션 예제를 살펴보겠습니다.
예제 코드는 다음과 같습니다.
<infinity-rotate.html>
<div class="box"> <div></div> <div></div> <div></div> <div></div> </div>
<infinity-rotate.css>
.box { width: 10px; height: 10px; display: flex; position: relative; -webkit-animation: rotating 2s linear infinite; -moz-animation: rotating 2s linear infinite; -ms-animation: rotating 2s linear infinite; -o-animation: rotating 2s linear infinite; animation: rotating 2s linear infinite; } .box > div { width: 5px; height: 5px; position: absolute; } .box > div:nth-child(1) { top: 0; left: 0; background-color: rgb(255, 0, 0); } .box > div:nth-child(2) { top: 0; right: 0; background-color: rgb(60, 212, 26); } .box > div:nth-child(3) { bottom: 0; left: 0; background-color: rgb(29, 112, 227); } .box > div:nth-child(4) { bottom: 0; right: 0; background-color: rgb(227, 29, 197); } @keyframes rotating { from { -ms-transform: rotate(0deg); -moz-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } to { -ms-transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } }
결과는 다음과 같습니다.
반응형'CSS' 카테고리의 다른 글
CSS 가 적용되는 우선순위 (0) 2024.01.24 CSS 에서 사용하는 길이 단위 (0) 2022.10.02 ul, ol 태그에서 커스텀 마커 사용하는 방법 (1) 2022.07.05 bell shake 애니메이션 예제 (0) 2022.05.12 scrollbar (스크롤바) css (0) 2021.03.13 다음글이전글이전 글이 없습니다.댓글
스킨 업데이트 안내
현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)