You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.7 KiB
55 lines
1.7 KiB
3 years ago
|
// Animation
|
||
|
@ease-base-out: cubic-bezier(0.7, 0.3, 0.1, 1);
|
||
|
@ease-base-in: cubic-bezier(0.9, 0, 0.3, 0.7);
|
||
|
@ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
|
||
|
@ease-in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
|
||
|
@ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
|
||
|
@ease-out-back: cubic-bezier(0.12, 0.4, 0.29, 1.46);
|
||
|
@ease-in-back: cubic-bezier(0.71, -0.46, 0.88, 0.6);
|
||
|
@ease-in-out-back: cubic-bezier(0.71, -0.46, 0.29, 1.46);
|
||
|
@ease-out-circ: cubic-bezier(0.08, 0.82, 0.17, 1);
|
||
|
@ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.34);
|
||
|
@ease-in-out-circ: cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
||
|
@ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
|
||
|
@ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
|
||
|
@ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
|
||
|
|
||
|
// Animation
|
||
|
@animation-duration-slow: 0.3s; // Modal
|
||
|
@animation-duration-base: 0.2s;
|
||
|
@animation-duration-fast: 0.1s; // Tooltip
|
||
|
|
||
|
.motion-common(@duration: @animation-duration-base) {
|
||
|
animation-duration: @duration;
|
||
|
animation-fill-mode: both;
|
||
|
}
|
||
|
|
||
|
.motion-common-leave(@duration: @animation-duration-base) {
|
||
|
animation-duration: @duration;
|
||
|
animation-fill-mode: both;
|
||
|
}
|
||
|
|
||
|
.make-motion(@className, @keyframeName, @duration: @animation-duration-base) {
|
||
|
.@{className}-enter,
|
||
|
.@{className}-appear {
|
||
|
.motion-common(@duration);
|
||
|
|
||
|
animation-play-state: paused;
|
||
|
}
|
||
|
.@{className}-leave {
|
||
|
.motion-common-leave(@duration);
|
||
|
|
||
|
animation-play-state: paused;
|
||
|
}
|
||
|
.@{className}-enter.@{className}-enter-active,
|
||
|
.@{className}-appear.@{className}-appear-active {
|
||
|
animation-name: ~'@{keyframeName}In';
|
||
|
animation-play-state: running;
|
||
|
}
|
||
|
.@{className}-leave.@{className}-leave-active {
|
||
|
animation-name: ~'@{keyframeName}Out';
|
||
|
animation-play-state: running;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
}
|