A playful GSAP menu demo exploring how easeReverse makes reversed UI animations feel smoother, snappier, and more intentional. clip-path GSAP menu Some days ago, the GSAP team released an update which introduced a small but very handy addition for reversible animations: easeReverse . The idea is straightforward: when you reverse a GSAP animation, the easing curve is reversed too. That often makes technical sense, but visually it can feel off. An ease-out animation played backwards becomes an ease-in , which means a UI element that entered smoothly might feel a bit sluggish or awkward when dismissed. With easeReverse , we can give the reverse direction its own easing behavior. It can reuse the forward ease adaptively, or it can use a completely different ease. This is especially useful for toggleable UI like menus, drawers, modals, tooltips, and other interruptible interactions. In this demo, we use it for a small (game-inspired) menu interaction.…