I have a keyframe animation with multiple steps:
@keyframes rotateLeftSideCustom {
0% {
}
40% {
-webk
You could use jQuery for animation. With .animate()
you have a property step
.
animate API
From the docs:
animate demo
Where *now*
is the actual state of your animation.
UPDATE
Propably you can use requestAnimationFrame but this is also like my other solution. The difference is - that it's pure JavaScript, so no external library needed.