UNPKG
animate-value
Version:
latest (1.1.0)
1.1.0
1.0.1
1.0.0
🏃 animates a numeric value
github.com/duivvv/animate-value
duivvv/animate-value
animate-value
/
es
/
lib
/
calc
/
calcProgress.js
7 lines
(5 loc)
•
162 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
ease
from
'../ease/'
;
export
default
(
function
(
start, duration, easing
) {
var
prog = (
Date
.
now
() - start) / duration;
return
ease[easing](prog); });