mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-27 00:28:47 +00:00
12 lines
377 B
JavaScript
12 lines
377 B
JavaScript
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
// Custom Easing
|
|
jQuery.extend( jQuery.easing,
|
|
{
|
|
easeInOutMaterial: function (x, t, b, c, d) {
|
|
if ((t/=d/2) < 1) return c/2*t*t + b;
|
|
return c/4*((t-=2)*t*t + 2) + b;
|
|
}
|
|
}); |