Blame view

bower_components/Materialize/js/animation.js 217 Bytes
74249687   Luigi Serra   Cross browser con...
1
2
3
4
5
6
7
8
      // 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;
        }
      });