0.0.1 • Published 9 years ago

@nathanfaucett/easing v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

easing Build Status

easing functions

var easing = require("@nathanfaucett/easing");

/*
  percentComplete - (0.0 to 1.0).
  elaspedTime - The number of milliseconds the animation has been running
  startValue - the value to start at (or the value when the percent complete is 0%)
  endValue - the value to end at (or the value when the percent complete is 100%)
  totalDuration - The total desired length of the animation in milliseconds
*/
easing.inOutQuad(percentComplete, elaspedTime, startValue, endValue, totalDuration);