Clearence Sale Store Upto 70% All Day Buy Me a Coffee

CSS Animations Generator

Create smooth CSS animations with keyframes

Generate CSS animations with custom properties, timing functions, and visual preview. Perfect for buttons, loaders, and UI interactions.

Animation Preview

Move
Rotate
Scale
Bounce
Fade
Color
2s
0s
infinite
ease
linear
ease-in
ease-out
ease-in-out
cubic-bezier

CSS Code

@keyframes moveAnimation {
    0% { transform: translateX(0); }
    50% { transform: translateX(100px); }
    100% { transform: translateX(0); }
}

.animated-element {
    animation: moveAnimation 2s ease infinite;
    animation-delay: 0s;
    animation-direction: normal;
    animation-fill-mode: none;
}

Common Animation Examples

Click on any example to apply it

Bounce

Rotate

Pulse

Slide

Fade In/Out

Color Change

Shake

Jump

How to Use This Tool

1

Choose Animation Type

Select the type of animation you want to create (move, rotate, scale, etc.).

2

Adjust Properties

Set duration, delay, iteration count, and timing function for your animation.

3

Preview & Control

Use play, pause, and stop buttons to control the animation preview.

4

Copy & Implement

Copy the generated CSS code and use it in your web projects.

CSS copied to clipboard!