Learn How Bezier Curves Work
Summary
- In CSS animations,
Bezier curves
are used with the cubic-bezier function. - The shape of the curve represents how the animation plays out.
- The cubic-bezier function consists of four main points that sit on this 1 by 1 grid:
p0
, p1
, p2
, and p3
. - More information can be found (here)[https://en.wikipedia.org/wiki/B%C3%A9zier_curve]
Final Code