Home 🛠️
PDF 압축기
이미지 변환기
CSS 애니메이션 생성기
복잡한 Keyframes 코드를 외울 필요 없이, 눈으로 보면서 효과를 만들고 복사하세요.
애니메이션 종류
Bounce (위아래 바운스)
Pulse (심장 박동)
Fade In (서서히 나타남)
Slide In Left (왼쪽에서 들어옴)
Shake (좌우 흔들기)
Spin (회전)
지속 시간 (Duration): 1s
가속도 (Timing Function)
linear (일정하게)
ease
ease-in (점점 빠르게)
ease-out (점점 느리게)
ease-in-out
지연 시간 (Delay): 0s
반복 횟수 (Iteration Count)
무한 (infinite)
1번
3번
5번
다시 재생하기 (Replay)
✨
CSS Code
복사하기
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } } .animate-bounce { animation-name: bounce; animation-duration: 1s; animation-timing-function: ease-in-out; animation-delay: 0s; animation-iteration-count: infinite; /* animation-fill-mode: forwards; // for one-off animations */ }