UNPKG
mdui
Version:
latest (2.1.4)
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.2
1.0.1
1.0.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.1
0.2.0
0.1.2
0.1.1
0.0.1
a CSS Framework based on material design
mdui.org
zdhxiong/mdui
mdui
/
src
/
styles
/
variable
/
animation.less
5 lines
(4 loc)
•
301 B
text/less
View Raw
1
2
3
4
5
@animation-curve-fast-out-slow-in:
cubic-bezier
(
0.4
,
0
,
0.2
,
1
);
// 慢 - 快 - 慢
@animation-curve-linear-out-slow-in:
cubic-bezier
(
0
,
0
,
0.2
,
1
);
// 快 - 慢
@animation-curve-fast-out-linear-in:
cubic-bezier
(
0.4
,
0
,
1
,
1
);
// 慢 - 快
@animation-curve-default:
@animation-curve-fast-out-slow-in
;