DevToolBoxฟรี
บล็อก

เครื่องมือสร้าง CSS Animation

สร้าง CSS keyframe animation แบบเห็นภาพพร้อมตัวอย่างสด

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

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

เครื่องมือสร้าง CSS Animation ฟรี

สร้าง CSS animation พร้อมตัวอย่างแบบเรียลไทม์และส่งออกโค้ด

เคล็ดลับ

  • ใช้ ease-in-out สำหรับแอนิเมชันที่ลื่นไหล
  • แอนิเมชัน UI ควรต่ำกว่า 300ms
  • ใช้ transform และ opacity เพื่อประสิทธิภาพ
  • forwards รักษาสถานะสุดท้าย
  • ใช้ animation-delay เพื่อกระจาย

คำถามที่พบบ่อย

CSS keyframe animation คืออะไร?
แอนิเมชันที่กำหนดขั้นตอนกลางด้วยกฎ @keyframes
มีฟังก์ชันเวลาอะไรบ้าง?
ease, linear, ease-in, ease-out, ease-in-out และ cubic-bezier
ทำให้วนซ้ำอย่างไร?
ตั้งค่าจำนวนรอบเป็น "infinite"
fill-mode คืออะไร?
fill-mode กำหนดว่าสไตล์จะถูกใช้อย่างไรก่อนและหลังแอนิเมชัน
ฟรีไหม?
ใช่ ฟรีทั้งหมด

เครื่องมือที่เกี่ยวข้อง

𝕏 Twitterin LinkedIn

💬 User Feedback

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

ให้คะแนนเครื่องมือนี้

4.8 / 5 · 79 คะแนน

เครื่องมือเพิ่มเติม

🌈Css Gradient Generator📦CSS Box Model Visualizer📐CSS Flexbox Generator

อัปเดตข่าวสาร

รับเคล็ดลับการพัฒนาและเครื่องมือใหม่ทุกสัปดาห์

ไม่มีสแปม ยกเลิกได้ตลอดเวลา

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.