Skip to main content

CSS Keyframe Animation Generator

Create custom @keyframes animations with ease.
Add keyframe stops, customize transforms, and preview live.

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

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