/
githubmirror
/
fullPage.js
Обзор
Документация
Войти
/
githubmirror
/
fullPage.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/js/easing.js
10 строк
339 B
Alvaro Trigo López
- Reducing output file size a bit more
27 мар 2022, 20:00
27 мар 2022, 20:00
d2ba3ea
Код
Авторство
О чём код?
import * as utils from './common/utils.js'; import { win } from './common/constants.js'; //easeInOutCubic animation included in the plugin // @ts-ignore win.fp_easings = utils.deepExtend(win.fp_easings, { easeInOutCubic: function (t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t*t + b;return c/2*((t-=2)*t*t + 2) + b; } });