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.
231 lines
4.4 KiB
231 lines
4.4 KiB
2 years ago
|
import type { CSSInterpolation } from '@ant-design/cssinjs';
|
||
3 years ago
|
import { Keyframes } from '@ant-design/cssinjs';
|
||
2 years ago
|
import type { AliasToken } from '../../theme/internal';
|
||
2 years ago
|
import type { TokenWithCommonCls } from '../../theme/util/genComponentStyleHook';
|
||
2 years ago
|
import { initMotion } from './motion';
|
||
3 years ago
|
|
||
2 years ago
|
export const zoomIn = new Keyframes('antZoomIn', {
|
||
3 years ago
|
'0%': {
|
||
|
transform: 'scale(0.2)',
|
||
|
opacity: 0,
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'scale(1)',
|
||
|
opacity: 1,
|
||
|
},
|
||
|
});
|
||
|
|
||
2 years ago
|
export const zoomOut = new Keyframes('antZoomOut', {
|
||
3 years ago
|
'0%': {
|
||
|
transform: 'scale(1)',
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'scale(0.2)',
|
||
|
opacity: 0,
|
||
|
},
|
||
|
});
|
||
2 years ago
|
|
||
|
export const zoomBigIn = new Keyframes('antZoomBigIn', {
|
||
|
'0%': {
|
||
|
transform: 'scale(0.8)',
|
||
|
opacity: 0,
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'scale(1)',
|
||
|
opacity: 1,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export const zoomBigOut = new Keyframes('antZoomBigOut', {
|
||
|
'0%': {
|
||
|
transform: 'scale(1)',
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'scale(0.8)',
|
||
|
opacity: 0,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export const zoomUpIn = new Keyframes('antZoomUpIn', {
|
||
|
'0%': {
|
||
|
transform: 'scale(0.8)',
|
||
|
transformOrigin: '50% 0%',
|
||
|
opacity: 0,
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'scale(1)',
|
||
|
transformOrigin: '50% 0%',
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export const zoomUpOut = new Keyframes('antZoomUpOut', {
|
||
|
'0%': {
|
||
|
transform: 'scale(1)',
|
||
|
transformOrigin: '50% 0%',
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'scale(0.8)',
|
||
|
transformOrigin: '50% 0%',
|
||
|
opacity: 0,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export const zoomLeftIn = new Keyframes('antZoomLeftIn', {
|
||
|
'0%': {
|
||
|
transform: 'scale(0.8)',
|
||
|
transformOrigin: '0% 50%',
|
||
|
opacity: 0,
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'scale(1)',
|
||
|
transformOrigin: '0% 50%',
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export const zoomLeftOut = new Keyframes('antZoomLeftOut', {
|
||
|
'0%': {
|
||
|
transform: 'scale(1)',
|
||
|
transformOrigin: '0% 50%',
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'scale(0.8)',
|
||
|
transformOrigin: '0% 50%',
|
||
|
opacity: 0,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export const zoomRightIn = new Keyframes('antZoomRightIn', {
|
||
|
'0%': {
|
||
|
transform: 'scale(0.8)',
|
||
|
transformOrigin: '100% 50%',
|
||
|
opacity: 0,
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'scale(1)',
|
||
|
transformOrigin: '100% 50%',
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export const zoomRightOut = new Keyframes('antZoomRightOut', {
|
||
|
'0%': {
|
||
|
transform: 'scale(1)',
|
||
|
transformOrigin: '100% 50%',
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'scale(0.8)',
|
||
|
transformOrigin: '100% 50%',
|
||
|
opacity: 0,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export const zoomDownIn = new Keyframes('antZoomDownIn', {
|
||
|
'0%': {
|
||
|
transform: 'scale(0.8)',
|
||
|
transformOrigin: '50% 100%',
|
||
|
opacity: 0,
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'scale(1)',
|
||
|
transformOrigin: '50% 100%',
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export const zoomDownOut = new Keyframes('antZoomDownOut', {
|
||
|
'0%': {
|
||
|
transform: 'scale(1)',
|
||
|
transformOrigin: '50% 100%',
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'scale(0.8)',
|
||
|
transformOrigin: '50% 100%',
|
||
|
opacity: 0,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
type ZoomMotionTypes =
|
||
|
| 'zoom'
|
||
|
| 'zoom-big'
|
||
|
| 'zoom-big-fast'
|
||
|
| 'zoom-left'
|
||
|
| 'zoom-right'
|
||
|
| 'zoom-up'
|
||
|
| 'zoom-down';
|
||
|
const zoomMotion: Record<ZoomMotionTypes, { inKeyframes: Keyframes; outKeyframes: Keyframes }> = {
|
||
|
zoom: {
|
||
|
inKeyframes: zoomIn,
|
||
|
outKeyframes: zoomOut,
|
||
|
},
|
||
|
'zoom-big': {
|
||
|
inKeyframes: zoomBigIn,
|
||
|
outKeyframes: zoomBigOut,
|
||
|
},
|
||
|
'zoom-big-fast': {
|
||
|
inKeyframes: zoomBigIn,
|
||
|
outKeyframes: zoomBigOut,
|
||
|
},
|
||
|
'zoom-left': {
|
||
|
inKeyframes: zoomLeftIn,
|
||
|
outKeyframes: zoomLeftOut,
|
||
|
},
|
||
|
'zoom-right': {
|
||
|
inKeyframes: zoomRightIn,
|
||
|
outKeyframes: zoomRightOut,
|
||
|
},
|
||
|
'zoom-up': {
|
||
|
inKeyframes: zoomUpIn,
|
||
|
outKeyframes: zoomUpOut,
|
||
|
},
|
||
|
'zoom-down': {
|
||
|
inKeyframes: zoomDownIn,
|
||
|
outKeyframes: zoomDownOut,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const initZoomMotion = (
|
||
|
token: TokenWithCommonCls<AliasToken>,
|
||
|
motionName: ZoomMotionTypes,
|
||
|
): CSSInterpolation => {
|
||
|
const { antCls } = token;
|
||
|
const motionCls = `${antCls}-${motionName}`;
|
||
|
const { inKeyframes, outKeyframes } = zoomMotion[motionName];
|
||
|
|
||
|
return [
|
||
|
initMotion(
|
||
|
motionCls,
|
||
|
inKeyframes,
|
||
|
outKeyframes,
|
||
2 years ago
|
motionName === 'zoom-big-fast' ? token.motionDurationFast : token.motionDurationMid,
|
||
2 years ago
|
),
|
||
|
{
|
||
|
[`
|
||
|
${motionCls}-enter,
|
||
|
${motionCls}-appear
|
||
|
`]: {
|
||
|
transform: 'scale(0)',
|
||
|
opacity: 0,
|
||
|
animationTimingFunction: token.motionEaseOutCirc,
|
||
|
|
||
|
'&-prepare': {
|
||
|
transform: 'none',
|
||
|
},
|
||
|
},
|
||
|
|
||
|
[`${motionCls}-leave`]: {
|
||
|
animationTimingFunction: token.motionEaseInOutCirc,
|
||
|
},
|
||
|
},
|
||
|
];
|
||
|
};
|