Moving in an Arc with Webkit Transitions?

Just add the end state of the animation to your class as properties set by animation are removed when animation ends. Adding webkit-transform: translate(300px, -300px) to your animation class fixes your problem.

Just add the end state of the animation to your class as properties set by animation are removed when animation ends. Adding -webkit-transform: translate(300px, -300px); to your animation class fixes your problem. .

Animation { -webkit-animation-name: throwBall; -webkit-animation-timing-function: linear; -webkit-animation-duration: 1s; -webkit-animation-iteration-count: 1; -webkit-transform: translate(300px, -300px); }.

Ah ok cool! Figured It'd be something simple. Thanks!

– TJ Kirchner Feb 18 at 20:32.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions