DESIGN
CSS Animation Generator — Keyframe Animations
CSS animations user experience को enhance करती हैं। हमारा CSS Animation Generator visual controls से animations create करता है — code लिखे बिना।
Animation Properties
- animation-duration: कितनी देर
- animation-timing-function: ease, linear, cubic-bezier
- animation-iteration-count: कितनी बार (या infinite)
- animation-direction: Normal, reverse, alternate
Pre-built Animation Templates
Fade, slide, bounce, spin, pulse, shake — common animations के templates ready हैं। Select करें और customize करें।
Performance Tips
GPU-accelerated properties animate करें: transform और opacity। Width, height, margin animate करने से reflow होता है जो slow है।
Create करें: CSS Animation Generator
अक्सर पूछे जाने वाले प्रश्न
Reduce motion preference कैसे respect करें?
@media (prefers-reduced-motion: reduce) { animation: none; } add करें — accessibility के लिए important।
JavaScript से animation control करें?
element.style.animationPlayState = 'paused' से pause/resume हो सकता है।
Animation loop में delay कैसे add करें?
animation-delay property use करें। Multiple elements पर sequential delay से staggered effect मिलता है।