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.
56 lines
1.4 KiB
56 lines
1.4 KiB
import { Keyframes } from '@ant-design/cssinjs';
|
|
import type { UploadToken } from '.';
|
|
import type { GenerateStyle } from '../../theme/internal';
|
|
import { initFadeMotion } from '../../style/motion';
|
|
|
|
const uploadAnimateInlineIn = new Keyframes('uploadAnimateInlineIn', {
|
|
from: {
|
|
width: 0,
|
|
height: 0,
|
|
margin: 0,
|
|
padding: 0,
|
|
opacity: 0,
|
|
},
|
|
});
|
|
|
|
const uploadAnimateInlineOut = new Keyframes('uploadAnimateInlineOut', {
|
|
to: {
|
|
width: 0,
|
|
height: 0,
|
|
margin: 0,
|
|
padding: 0,
|
|
opacity: 0,
|
|
},
|
|
});
|
|
// =========================== Motion ===========================
|
|
const genMotionStyle: GenerateStyle<UploadToken> = (token) => {
|
|
const { componentCls } = token;
|
|
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`]: initFadeMotion(token),
|
|
},
|
|
uploadAnimateInlineIn,
|
|
uploadAnimateInlineOut,
|
|
];
|
|
};
|
|
|
|
export default genMotionStyle;
|
|
|