CSS animation でアニメーション完了後にアニメーションの最後の状態で止まってほしい時のメモ
animation-fill-mode プロパティを forwards にする。
.box { animation: my-anime 5s ease -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; }
animationプロパティの値に続けて書いてもOKっぽい
.box { -webkit-animation: box-anime 5s ease forwards; animation: box-anime 5s ease forwards; }
サンプル
See the Pen CSS ANIMATION TEST by KiKiKi (@chaika-design) on CodePen.
Stylusでコンパイルしたら、-webkit
とか-moz
とかのベンダープレフィックスいっぱい出力されてたけど、まだ必要なのだろうか? animation-fill-mode
を使うなら必要???
[参考]
- CSS3 Animations
- CSS アニメーションの基礎 | Unformed Building
- 【CSS】animationプロパティを使ったマウスホバーエフェクトの巻き戻し | UNORTHODOX WORKBOOK | Blog

- 作者: アニメ6人の会
- 出版社/メーカー: 合同出版
- 発売日: 2010/03
- メディア: 単行本
- 購入: 12人 クリック: 218回
- この商品を含むブログ (6件) を見る