HomeToolsAnimation

Animation

Duration1s
Delay0s
Keyframe 0%
Time Position (%)0
X Offset0px
Y Offset0px
Scale1
Rotate0deg
Opacity1
PREVIEW
Animate Me
.animated-element {
  animation-name: my-animation;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
}
@keyframes my-animation {
  0% {
    opacity: 1;
    transform: translate(0px, 0px) scale(1) rotate(0deg);
    background-color: #3b82f6;
  }
  100% {
    opacity: 1;
    transform: translate(100px, 0px) scale(1) rotate(0deg);
    background-color: #3b82f6;
  }
}