I am using CSS transition in animation circles (nodes) around the screen.
CSS
.circle {-webkit-transition: all 0.8s ease-in-out; }
JS:
$('.circle').css({ webkitTransform: "translate3d(20px, 20px, 0px)" })
I would like to always know the translation properties, so I can update the lines connecting the nodes.
If I used jQuery animation, I could use the step function. Is there something similar in CSS transitions? I saw the "webkitTransitionEnd" event, but did nothing for the individual animation steps.
Or do I need to do this with timers?
source share