-
[CSS] 간단한 아이콘 회전 애니메이션 [Tailwind CSS]웹 개발/소소한 팁, 버그 해결 2024. 3. 20. 02:00
완전 초 간단한 회전 애니메이션
.spin-object { animation: spin 5000ms infinite linear; } @keyframes spin { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
위에서 설명한 아이콘 회전 + 크기 조절을 적용하면
.spin-object { animation: spin 5000ms infinite linear; } @keyframes spin { from { -moz-transform: scale(0) rotate(0deg); -ms-transform: scale(0) rotate(0deg); -o-transform: scale(0) rotate(0deg); transform: scale(0) rotate(0deg); } to { -moz-transform: scale(100%) rotate(360deg); -ms-transform: scale(100%) rotate(360deg); -o-transform: scale(100%) rotate(360deg); transform: scale(100%) rotate(360deg); } }
'웹 개발 > 소소한 팁, 버그 해결' 카테고리의 다른 글
[CSS] link / anchor 태그 비활성화 [Tailwind CSS] (0) 2024.03.20 [CSS] 아이콘 / 텍스트에 그라데이션(Gradient) 추가 [Tailwind CSS] (0) 2024.03.20 [CSS] icon 회전하기 / <i> 태그 회전하기 [Tailwind CSS] (0) 2024.03.20 [Typescript] TypeError: Webpack imported module is not a function 해결 (0) 2024.03.20 [Next.js 14] 버튼 동시에 눌리는 현상 막기 [stopPropagation][Typescript] (0) 2024.03.20