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