How to animate translate properties with Velocity.js?
In Velocity V2 there are no longer any transform
shortcuts such as translateX - just use the css transform
property properly and it'll work (there are issues in V1 with trying to do that unfortunately).
Velocity(adiv, {transform:"translateX(200px)"}, [ 500, 20 ]);
If there's no forcefeeding it'll animate from a value of 0.