Files
css-examples/Writerside/topics/Animation.md
2024-06-16 01:16:39 +09:00

325 B

Animation

  • animation
  • animation-duration
  • animation-name
  • animation-iteration-count
  • animation-direction
p {
  animation-duration: 3s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    translate: 150vw 0;
    scale: 200% 1;
  }

  to {
    translate: 0 0;
    scale: 100% 1;
  }
}