mirror of
https://github.com/element-hq/element-web
synced 2024-11-29 04:48:50 +03:00
e61e7f2626
Signed-off-by: Aaron Raimist <aaron@raim.ist>
17 lines
521 B
JavaScript
17 lines
521 B
JavaScript
const Velocity = require('velocity-vector');
|
|
|
|
// courtesy of https://github.com/julianshapiro/velocity/issues/283
|
|
// We only use easeOutBounce (easeInBounce is just sort of nonsensical)
|
|
function bounce( p ) {
|
|
let pow2;
|
|
let bounce = 4;
|
|
|
|
while ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) {
|
|
// just sets pow2
|
|
}
|
|
return 1 / Math.pow( 4, 3 - bounce ) - 7.5625 * Math.pow( ( pow2 * 3 - 2 ) / 22 - p, 2 );
|
|
}
|
|
|
|
Velocity.Easings.easeOutBounce = function(p) {
|
|
return 1 - bounce(1 - p);
|
|
};
|