Webkit CSS Animation issue – persisting the end state of the animation? [duplicate]

You can use -webkit-animation-fill-mode to persist the end state (or even extend the start state backwards). It was added to WebKit a while ago, and shipped in iOS 4 and Safari 5.

-webkit-animation-fill-mode: forwards;

Leave a Comment