Spin Deceleration
Starts with a fast spin that gradually decelerates over time.
Code
initialSpin = 720; // degrees
deceleration = 2;
spin = initialSpin / (1 + deceleration * time);
spin
spinrotationdeceleration
How to Use
Apply this expression to the Rotation property so that a layer spins quickly at first and then slows down. Tweak `initialSpin` and `deceleration` to control the effect.