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) · 564 Bytes

path-easing.md

File metadata and controls

17 lines (13 loc) · 564 Bytes

Path Easing

The path easing functions can be expressed with string containing svg path cordinates or with easing.path constructor that returns a function:

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