I am working with some css animation. But I found that, the CSS transition only support following easing function.
ease | linear | ease-in | ease-out | ease-in-out | cubic-bezier()
I do want to use something like easeOutBack easing in the animation with pure css. I am thinking to do it with the webkit-animation. But only safari support it.
The easeOutBack motion is a motion where the object will go beyond the boundary and back again.More about different motion function. You can see this link below.
http://hosted.zeh.com.br/tweener/docs/en-us/misc/transitions.html
Anyone have suggestion of how to implement easeOutBack easing in css transform animation?