常见的缓动曲线及其公式

前言
本篇在讲什么

本章节记录常见的缓动曲线,及其计算公式,以作学习和记录
本篇适合什么

适合想要了解缓动曲线原理的小白 适合入门的前端程序
本篇需要什么

简单的数学基础
本篇的特色

具有全流程的图文教学
重实践,轻理论,快速上手
提供全流程的源码内容


★提高阅读体验★

♠ 一级标题

♥ 二级标题

♣ 三级标题

♦ 四级标题


目录

  • ♠ 曲线
    • ♥ easeInSine
    • ♥ easeOutSine
    • ♥ easeInOutSine
    • ♥ easeInQuad
    • ♥ easeOutQuad
    • ♥ easeInOutQuad
    • ♥ easeInCubic
    • ♥ easeOutCubic
    • ♥ easeInOutCubic
    • ♥ easeInQuart
    • ♥ easeOutQuart
    • ♥ easeInOutQuart
    • ♥ easeInQuint
    • ♥ easeOutQuint
    • ♥ easeInOutQuint
    • ♥ easeInExpo
    • ♥ easeOutExpo
    • ♥ easeInOutExpo
    • ♥ easeInCirc
    • ♥ easeOutCirc
    • ♥ easeInOutCirc
    • ♥ easeInBack
    • ♥ easeOutBack
    • ♥ easeInOutBack
    • ♥ easeInElastic
    • ♥ easeOutElastic
    • ♥ easeInOutElastic
    • ♥ easeInBounce
    • ♥ easeOutBounce
    • ♥ easeInOutBounce
  • ♠ 推送
  • ♠ 结语


♠ 曲线

下图是我们常见的曲线列表,章节内所有公式和图表摘自网站easings.net有需要可以自行查看

常见的缓动曲线及其公式_第1张图片


♥ easeInSine

常见的缓动曲线及其公式_第2张图片

function easeInSine(x: number): number {
    return 1 - Math.cos((x * Math.PI) / 2);
}

♥ easeOutSine

常见的缓动曲线及其公式_第3张图片

function easeOutSine(x: number): number {
    return Math.sin((x * Math.PI) / 2);
}

♥ easeInOutSine

常见的缓动曲线及其公式_第4张图片

function easeInOutSine(x: number): number {
    return -(Math.cos(Math.PI * x) - 1) / 2;
}

♥ easeInQuad

常见的缓动曲线及其公式_第5张图片

function easeInQuad(x: number): number {
    return x * x;
}

♥ easeOutQuad

常见的缓动曲线及其公式_第6张图片

function easeOutQuad(x: number): number {
    return 1 - (1 - x) * (1 - x);
}

♥ easeInOutQuad

常见的缓动曲线及其公式_第7张图片

function easeInOutQuad(x: number): number {
    return x < 0.5 ? 2 * x * x : 1 - Math.pow(-2 * x + 2, 2) / 2;
}

♥ easeInCubic

常见的缓动曲线及其公式_第8张图片

function easeInCubic(x: number): number {
    return x * x * x;
}

♥ easeOutCubic

常见的缓动曲线及其公式_第9张图片

function easeOutCubic(x: number): number {
    return 1 - Math.pow(1 - x, 3);
}

♥ easeInOutCubic

常见的缓动曲线及其公式_第10张图片

function easeInOutCubic(x: number): number {
    return x < 0.5 ? 4 * x * x * x : 1 - Math.pow(-2 * x + 2, 3) / 2;
}

♥ easeInQuart

常见的缓动曲线及其公式_第11张图片

function easeInQuart(x: number): number {
    return x * x * x * x;
}

♥ easeOutQuart

常见的缓动曲线及其公式_第12张图片

function easeOutQuart(x: number): number {
    return 1 - Math.pow(1 - x, 4);
}

♥ easeInOutQuart

常见的缓动曲线及其公式_第13张图片

function easeInOutQuart(x: number): number {
    return x < 0.5 ? 8 * x * x * x * x : 1 - Math.pow(-2 * x + 2, 4) / 2;
}

♥ easeInQuint

常见的缓动曲线及其公式_第14张图片

function easeInQuint(x: number): number {
    return x * x * x * x * x;
}

♥ easeOutQuint

常见的缓动曲线及其公式_第15张图片

function easeOutQuint(x: number): number {
    return 1 - Math.pow(1 - x, 5);
}

♥ easeInOutQuint

常见的缓动曲线及其公式_第16张图片

function easeInOutQuint(x: number): number {
return x < 0.5 ? 16 * x * x * x * x * x : 1 - Math.pow(-2 * x + 2, 5) / 2;
}

♥ easeInExpo

常见的缓动曲线及其公式_第17张图片

function easeInExpo(x: number): number {
    return x === 0 ? 0 : Math.pow(2, 10 * x - 10);
}

♥ easeOutExpo

常见的缓动曲线及其公式_第18张图片

function easeOutExpo(x: number): number {
    return x === 1 ? 1 : 1 - Math.pow(2, -10 * x);
}

♥ easeInOutExpo

常见的缓动曲线及其公式_第19张图片

function easeInOutExpo(x: number): number {
    return x === 0
        ? 0
        : x === 1
        ? 1
        : x < 0.5 ? Math.pow(2, 20 * x - 10) / 2
        : (2 - Math.pow(2, -20 * x + 10)) / 2;
}

♥ easeInCirc

常见的缓动曲线及其公式_第20张图片

function easeInCirc(x: number): number {
    return 1 - Math.sqrt(1 - Math.pow(x, 2));
}

♥ easeOutCirc

常见的缓动曲线及其公式_第21张图片

function easeOutCirc(x: number): number {
    return sqrt(1 - Math.pow(x - 1, 2));
}

♥ easeInOutCirc

常见的缓动曲线及其公式_第22张图片

function easeInOutCirc(x: number): number {
    return x < 0.5
        ? (1 - Math.sqrt(1 - Math.pow(2 * x, 2))) / 2
        : (Math.sqrt(1 - Math.pow(-2 * x + 2, 2)) + 1) / 2;
}

♥ easeInBack

常见的缓动曲线及其公式_第23张图片

function easeInBack(x: number): number {
    const c1 = 1.70158;
    const c3 = c1 + 1;

    return c3 * x * x * x - c1 * x * x;
}

♥ easeOutBack

常见的缓动曲线及其公式_第24张图片

function easeOutBack(x: number): number {
    const c1 = 1.70158;
    const c3 = c1 + 1;

    return 1 + c3 * Math.pow(x - 1, 3) + c1 * Math.pow(x - 1, 2);
}

♥ easeInOutBack

常见的缓动曲线及其公式_第25张图片

function easeInOutBack(x: number): number {
    const c1 = 1.70158;
    const c2 = c1 * 1.525;

    return x < 0.5
  ? (Math.pow(2 * x, 2) * ((c2 + 1) * 2 * x - c2)) / 2
  : (Math.pow(2 * x - 2, 2) * ((c2 + 1) * (x * 2 - 2) + c2) + 2) / 2;
}

♥ easeInElastic

常见的缓动曲线及其公式_第26张图片

function easeInElastic(x: number): number {
    const c4 = (2 * Math.PI) / 3;

    return x === 0
        ? 0
        : x === 1
        ? 1
        : -Math.pow(2, 10 * x - 10) * Math.sin((x * 10 - 10.75) * c4);
}

♥ easeOutElastic

常见的缓动曲线及其公式_第27张图片

function easeOutElastic(x: number): number {
    const c4 = (2 * Math.PI) / 3;

    return x === 0
        ? 0
        : x === 1
        ? 1
        : Math.pow(2, -10 * x) * Math.sin((x * 10 - 0.75) * c4) + 1;
}

♥ easeInOutElastic

常见的缓动曲线及其公式_第28张图片

function easeInOutElastic(x: number): number {
    const c5 = (2 * Math.PI) / 4.5;

    return x === 0
        ? 0
        : x === 1
        ? 1
        : x < 0.5
        ? -(Math.pow(2, 20 * x - 10) * Math.sin((20 * x - 11.125) * c5)) / 2
        : (Math.pow(2, -20 * x + 10) * Math.sin((20 * x - 11.125) * c5)) / 2 + 1;
}

♥ easeInBounce

常见的缓动曲线及其公式_第29张图片

function easeInBounce(x: number): number {
    return 1 - easeOutBounce(1 - x);
}

♥ easeOutBounce

常见的缓动曲线及其公式_第30张图片

function easeOutBounce(x: number): number {
    const n1 = 7.5625;
    const d1 = 2.75;

    if (x < 1 / d1) {
        return n1 * x * x;
    } else if (x < 2 / d1) {
        return n1 * (x -= 1.5 / d1) * x + 0.75;
    } else if (x < 2.5 / d1) {
        return n1 * (x -= 2.25 / d1) * x + 0.9375;
    } else {
        return n1 * (x -= 2.625 / d1) * x + 0.984375;
    }
}

♥ easeInOutBounce

常见的缓动曲线及其公式_第31张图片

function easeInOutBounce(x: number): number {
    return x < 0.5
        ? (1 - easeOutBounce(1 - 2 * x)) / 2
        : (1 + easeOutBounce(2 * x - 1)) / 2;
}

♠ 推送

  • Github
https://github.com/KingSun5

♠ 结语

若是觉得博主的文章写的不错,不妨关注一下博主,点赞一下博文,另博主能力有限,若文中有出现什么错误的地方,欢迎各位评论指摘。

本文属于原创文章,转载请评论留言,并在转载文章头部著名作者出处

你可能感兴趣的:(基础,缓动曲线,贝塞尔曲线)