UNPKG
materialize-css
Version:
latest (1.0.0)
next (1.0.0-rc.2)
1.0.0
1.0.0-rc.2
1.0.0-rc.1
1.0.0-beta
1.0.0-alpha.4
1.0.0-alpha.3
1.0.0-alpha.2
1.0.0-alpha.1
0.100.2
0.100.1
0.100.0
0.99.0
0.98.2
0.98.1
0.98.0
0.97.8
0.97.7
0.97.6
0.97.5
0.97.4
0.97.3
0.97.2
0.97.1
0.96.1
0.95.3
Builds Materialize distribution packages
github.com/Dogfalo/materialize
Dogfalo/materialize
materialize-css
/
js
/
animation.js
8 lines
•
183 B
JavaScript
View Raw
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;
}
}
)
;