Skip to main content

CSS Animation Generator

Create custom CSS animations with keyframes.
Adjust timing, duration, and transform properties with live preview.

1s
0s
Editing: 0%
1.00
0px
0px
0deg
1.00
@keyframes myAnimation {
  0% {
    opacity: 1;
    background-color: #3b82f6;
  }
  100% {
    opacity: 1;
    background-color: #3b82f6;
  }
}

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