[260217] TIL

Today I Learned (2026-02-17)

CSS Animation

  • MDN - CSS μ• λ‹ˆλ©”μ΄μ…˜ μ‚¬μš©ν•˜κΈ°
  • CSS μ• λ‹ˆλ©”μ΄μ…˜μ€ animation 속성과 ν•˜μœ„ μ†μ„±λ“€λ‘œ μ œμ–΄ν•œλ‹€.
  • μ• λ‹ˆλ©”μ΄μ…˜ 쀑간 μƒνƒœλŠ” @keyframes κ·œμΉ™μœΌλ‘œ μ •μ˜ν•œλ‹€.
p {
  animation-duration: 3s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
  }

  to {
    margin-left: 0%;
    width: 100%;
  }
}

Categories:

Updated:

Leave a comment