iPhone/Safari で、Animate.css の flipInX が動いてる間、背景がチラチラ見えてしまっておかしい事があった。
Animate.css の持ってる次の既定スタイルを、
.animated {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
次のように打ち消し上書きするとなぜか改善した。
.animated {
-webkit-animation-fill-mode: backwards;
animation-fill-mode: backwards;
}
なにこれ、WebKitの不具合?