Currently, I am attempting to animate spans, and while the animation is functional, it appears to be somewhat choppy and lacks smoothness.
https://codepen.io/pokepim/pen/JBRoay My assumption is that this is due to my use of left/right for animation purposes.
$(".bf").velocity({left: "100%" })
$(".af").velocity({right: "100%" })
I am now experimenting with reconstructing this effect using translateX, but unfortunately, it doesn't seem to work as expected (in fact, there is no visible animation at all).
$(".bf").velocity({ translateX: "-100%" })
$(".af").velocity({ translateX: "100%" })
Here is the codepen showcasing this particular example: