CSS Animation Generator

Create stunning CSS animations with customizable timing, duration, and effects. Generate keyframes and animation properties with live preview.

Animation Settings

Live Preview

Complete CSS Code:
@keyframes fadeIn {
0% {
  opacity: 0;
}
100% {
  opacity: 1;
}
}

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

Animation Property

Use this value for the animation property
fadeIn 1s ease 0s 1 normal none