| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/app/node_modules/vuetify/lib/services/goto/ |
Upload File : |
// linear export const linear = t => t; // accelerating from zero velocity export const easeInQuad = t => t ** 2; // decelerating to zero velocity export const easeOutQuad = t => t * (2 - t); // acceleration until halfway, then deceleration export const easeInOutQuad = t => t < 0.5 ? 2 * t ** 2 : -1 + (4 - 2 * t) * t; // accelerating from zero velocity export const easeInCubic = t => t ** 3; // decelerating to zero velocity export const easeOutCubic = t => --t ** 3 + 1; // acceleration until halfway, then deceleration export const easeInOutCubic = t => t < 0.5 ? 4 * t ** 3 : (t - 1) * (2 * t - 2) * (2 * t - 2) + 1; // accelerating from zero velocity export const easeInQuart = t => t ** 4; // decelerating to zero velocity export const easeOutQuart = t => 1 - --t ** 4; // acceleration until halfway, then deceleration export const easeInOutQuart = t => t < 0.5 ? 8 * t * t * t * t : 1 - 8 * --t * t * t * t; // accelerating from zero velocity export const easeInQuint = t => t ** 5; // decelerating to zero velocity export const easeOutQuint = t => 1 + --t ** 5; // acceleration until halfway, then deceleration export const easeInOutQuint = t => t < 0.5 ? 16 * t ** 5 : 1 + 16 * --t ** 5; //# sourceMappingURL=easing-patterns.js.map