添加按年月搜索

This commit is contained in:
结发受长生
2019-05-18 16:18:54 +08:00
parent fedaac2d9f
commit 03df5688eb
4 changed files with 25 additions and 28 deletions
@@ -248,22 +248,15 @@
}
}
/*弹性动画*/
@keyframes leftIn {
from {transform: translate3d(0, 0, 0);}
to {transform: translate3d(333px, 0, 0);}
}
%anmCommon {
animation-duration: .5s;
animation-fill-mode: both;
animation-timing-function: ease-in-out;
}
%anmLeftIn {
@extend %anmCommon;
animation-name: leftIn;
@keyframes leftIn {
from {transform: translate3d(0, 0, 0);}
to {transform: translate3d(333px, 0, 0);}
}
@keyframes leftOut {
@@ -271,6 +264,11 @@
to {transform: translate3d(0, 0, 0);}
}
%anmLeftIn {
@extend %anmCommon;
animation-name: leftIn;
}
%anmLeftOut {
@extend %anmCommon;
animation-name: leftOut;
@@ -281,16 +279,16 @@
to {transform: translate3d(300px, 0, 0);}
}
%anmSmallLeftIn {
@extend %anmCommon;
animation-name: smallLeftIn;
}
@keyframes smallleftOut {
from {transform: translate3d(300px, 0, 0);}
to {transform: translate3d(0, 0, 0);}
}
%anmSmallLeftIn {
@extend %anmCommon;
animation-name: smallLeftIn;
}
%anmSmallLeftOut {
@extend %anmCommon;
animation-name: smallleftOut;