mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-15 22:16:22 +00:00
5 lines
127 B
JavaScript
5 lines
127 B
JavaScript
function elasticIn(t) {
|
|
return Math.sin(13.0 * t * Math.PI/2) * Math.pow(2.0, 10.0 * (t - 1.0))
|
|
}
|
|
|
|
module.exports = elasticIn |