Skip to main content

Configurazione Animazione

Keyframes

translateX(0)
translateX(100px)

Anteprima Live

Animated

CSS Generato

@keyframes myAnimation {
  0% {
  transform: translateX(0);
  opacity: 1;
  }
  100% {
  transform: translateX(100px);
  opacity: 0.5;
  }
}

.animated-element {
  animation-name: myAnimation;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: both;
}