Bezier curves are used by all sorts of animation software for example: maya (like the slide shows) and after effects for 2d animations.
For people familar with web technologies it's also possible to define transition effects of html elements through css bezier curves (https://www.w3schools.com/cssref/func_cubic-bezier.asp).
jenzou
To add onto the previous comment, CSS timing functions (https://developer.mozilla.org/en-US/docs/Web/CSS/timing-function) include bezier curves and staircase functions. Bezier curves are also called easing functions. http://cubic-bezier.com/ is a useful tool for visualizing cubic-bezier() class of timing functions.
Bezier curves are used by all sorts of animation software for example: maya (like the slide shows) and after effects for 2d animations. For people familar with web technologies it's also possible to define transition effects of html elements through css bezier curves (https://www.w3schools.com/cssref/func_cubic-bezier.asp).
To add onto the previous comment, CSS timing functions (https://developer.mozilla.org/en-US/docs/Web/CSS/timing-function) include bezier curves and staircase functions. Bezier curves are also called easing functions. http://cubic-bezier.com/ is a useful tool for visualizing cubic-bezier() class of timing functions.