Create CSS @keyframe animations visually. Choose animation type, timing, duration, and see a live preview. Copy the complete CSS code instantly. No JavaScript needed.
Select an animation type, configure duration, timing function, delay, and iteration count. The live preview shows the animation in real time, and the tool generates complete CSS @keyframes code you can copy into any project.
animation-fill-mode: forwards keeps the element in its final state after the animation ends. backwards applies the start state during the delay period. both applies both rules simultaneously..element:hover { animation-play-state: paused; } to your CSS. This pauses any running CSS animation when the user hovers over the element, useful for carousels and animated icons.transform και opacity for 60fps smooth animations. These properties are handled by the GPU and do not trigger layout reflows. Avoid animating width, height, top, ή left properties as they cause expensive layout recalculations.