≪ Today I learned.
RSS購読
    公開日
    タグ
    CSS
    著者
    ダーシノ

    animation-compositionで初期値を基準にアニメーションする

    animation-compositionが使えるようになった。

    .ball {
      top: 50px;
      left: 100px;
      animation: slide 1s infinite alternate;
      /* animation-composition: replace; */
      animation-composition: add;
    }
    
    @keyframes slide {
      from {
        left: 0;
      }
      to {
        left: 250px;
      }
    }