DevToolBoxGRATIS
Blog

Generator Animasi CSS

Buat animasi keyframe CSS secara visual dengan preview langsung.

1s
0s
A
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.animated-element {
  animation: bounce 1s ease 0s infinite normal none;
}

Generator animasi CSS gratis

Buat animasi CSS dengan preview real-time dan ekspor kode.

Tips

  • Gunakan ease-in-out untuk animasi halus
  • Pertahankan animasi di bawah 300ms
  • Gunakan transform dan opacity untuk performa
  • forwards mempertahankan status akhir
  • Gunakan animation-delay untuk menyebar

FAQ

Apa itu animasi CSS keyframe?
Animasi keyframe mendefinisikan langkah menengah dengan aturan @keyframes.
Fungsi timing apa saja?
ease, linear, ease-in, ease-out, ease-in-out dan cubic-bezier.
Bagaimana mengulang?
Atur iterasi ke "infinite".
Apa itu fill-mode?
fill-mode menentukan bagaimana gaya diterapkan sebelum dan sesudah animasi.
Apakah gratis?
Ya, sepenuhnya gratis.

Alat terkait

๐• Twitterin LinkedIn

๐Ÿ’ฌ User Feedback

Have suggestions or found a bug? Leave a message and we'll get back to you.
0/2000

Nilai alat ini

4.8 / 5 ยท 79 penilaian

Tetap Update

Dapatkan tips dev mingguan dan tool baru.

Tanpa spam. Berhenti kapan saja.

Enjoy these free tools?

โ˜•Buy Me a Coffee

How to Use

  1. Choose an animation type or customize keyframes
  2. Adjust timing, duration, and easing
  3. Preview the animation in real-time
  4. Copy the generated CSS code

Common Use Cases

  • Creating hover effects
  • Building loading animations
  • Adding entrance/exit animations
  • Prototyping UI interactions

Frequently Asked Questions

What animation types are available?
Fade, slide, bounce, rotate, scale, flip, pulse, shake, and custom keyframe animations.
Can I customize the timing?
Yes. Adjust duration, delay, iteration count, direction, fill mode, and timing function (easing).
Will it work in all browsers?
Generated CSS includes vendor prefixes for maximum browser compatibility.