Add prefix to keyframes

This commit is contained in:
afc163 2015-08-24 12:27:13 +08:00
parent 7a6f190e9e
commit 4897b4d3f5

View File

@ -101,21 +101,21 @@
}
.@{upload-prefix-cls}-margin-top-enter {
animation: marginTopIn .3s @ease-in-out-circ;
animation: uploadMarginTopIn .3s @ease-in-out-circ;
}
.@{upload-prefix-cls}-margin-top-leave {
animation: marginTopOut .3s @ease-in-out-circ;
animation: uploadMarginTopOut .3s @ease-in-out-circ;
}
@keyframes marginTopIn {
@keyframes uploadMarginTopIn {
from {
margin-top: -25px;
opacity: 0;
}
}
@keyframes marginTopOut {
@keyframes uploadMarginTopOut {
to {
margin-top: -25px;
opacity: 0;