The core problem is actually related to the fact that browsers always report the current transforms in terms of a matrix() or matrix3d() which contains no information about percentage-based values. They're all baked into those px-based matrices, thus it's impossible for GSAP to know that you originally intended the value to be percent-based.    In other words, 114% gets converted (by the browser, not GSAP) to something like 68px (or whatever).    As a convenience (and this is actually quite
    • Like
    4