Skip to content

Instantly share code, notes, and snippets.

@madrobby
Forked from jeremyckahn/penner_beziers.js
Created June 24, 2012 19:32
Show Gist options
  • Save madrobby/2984623 to your computer and use it in GitHub Desktop.
Save madrobby/2984623 to your computer and use it in GitHub Desktop.
Penner beziers
var beziers = {
easeInQuad: '.55,.085,.68,.53',
easeInCubic: '.55,.055,.675,.19',
easeInQuart: '.895,.03,.685,.22',
easeInQuint: '.755,.05,.855,.06',
easeInSine: '.47,0,.745,.715',
easeInExpo: '.95,.05,.795,.035',
easeInCirc: '.6,.04,.98, .335',
easeInBack: '.6,-.28,.735,.045',
easeOutQuad: '.25,.46,.45,.94',
easeOutCubic: '.215,.61,.355,1',
easeOutQuart: '.165,.84,.44,1',
easeOutQuint: '.23,1,.32,1',
easeOutSine: '.39,.575,.565,1',
easeOutExpo: '.19,1,.22,1',
easeOutCirc: '.075,.82,.165,1',
easeOutBack: '.175,.885,.32,1.275',
easeInOutQuad: '.455,.03,.515,.955',
easeInOutCubic: '.645,.045,.355,1',
easeInOutQuart: '.77,0,.175,1',
easeInOutQuint: '.86,0.07,1',
easeInOutSine: '.445,.05,.55,.95',
easeInOutExpo: '1,0,0,1',
easeInOutCirc: '.785,.135,.15,.86',
easeInOutBack: '.68,-.55,.265,1.55'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment