first commit
This commit is contained in:
51
frontend/node_modules/antd/lib/upload/style/motion.js
generated
vendored
Normal file
51
frontend/node_modules/antd/lib/upload/style/motion.js
generated
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var _cssinjs = require("@ant-design/cssinjs");
|
||||
var _motion = require("../../style/motion");
|
||||
// =========================== Motion ===========================
|
||||
const genMotionStyle = token => {
|
||||
const {
|
||||
componentCls
|
||||
} = token;
|
||||
const uploadAnimateInlineIn = new _cssinjs.Keyframes('uploadAnimateInlineIn', {
|
||||
from: {
|
||||
width: 0,
|
||||
height: 0,
|
||||
padding: 0,
|
||||
opacity: 0,
|
||||
margin: token.calc(token.marginXS).div(-2).equal()
|
||||
}
|
||||
});
|
||||
const uploadAnimateInlineOut = new _cssinjs.Keyframes('uploadAnimateInlineOut', {
|
||||
to: {
|
||||
width: 0,
|
||||
height: 0,
|
||||
padding: 0,
|
||||
opacity: 0,
|
||||
margin: token.calc(token.marginXS).div(-2).equal()
|
||||
}
|
||||
});
|
||||
const inlineCls = `${componentCls}-animate-inline`;
|
||||
return [{
|
||||
[`${componentCls}-wrapper`]: {
|
||||
[`${inlineCls}-appear, ${inlineCls}-enter, ${inlineCls}-leave`]: {
|
||||
animationDuration: token.motionDurationSlow,
|
||||
animationTimingFunction: token.motionEaseInOutCirc,
|
||||
animationFillMode: 'forwards'
|
||||
},
|
||||
[`${inlineCls}-appear, ${inlineCls}-enter`]: {
|
||||
animationName: uploadAnimateInlineIn
|
||||
},
|
||||
[`${inlineCls}-leave`]: {
|
||||
animationName: uploadAnimateInlineOut
|
||||
}
|
||||
}
|
||||
}, {
|
||||
[`${componentCls}-wrapper`]: (0, _motion.initFadeMotion)(token)
|
||||
}, uploadAnimateInlineIn, uploadAnimateInlineOut];
|
||||
};
|
||||
var _default = exports.default = genMotionStyle;
|
||||
Reference in New Issue
Block a user