Skip to content
This repository has been archived by the owner on Apr 29, 2019. It is now read-only.

Latest commit

 

History

History
17 lines (13 loc) · 523 Bytes

bezier-curves.md

File metadata and controls

17 lines (13 loc) · 523 Bytes

Bezier Curves

The bezier curves functions can be expressed with string containing bezier() function or with mojs.easing.bezier constructor that returns a function:

  // ...
  easing: 'bezier()',
  // or
  easing: mojs.easing.path('M0,100 C50,100 50,67.578125 50,50 C50,32.421875 50,0 100,0')
  // ...