🎬

CSS Animation Generator

Generator animasi CSS online gratis. Desain animasi keyframe dengan editor visual dan ekspor kode CSS.

%
%
@keyframes myAnimation {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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