Custom Easing Functions
Write or import easing functions to control the pace of animations.
What Easing Is
An easing function maps linear time (0 to 1) to a non-linear progress curve, giving animations character.
Function Signature
An easing function takes t in [0, 1] and returns adjusted progress.
function linear(t) { return t; }