ant-design/components/style/motion/zoom.tsx

25 lines
395 B
TypeScript
Raw Normal View History

import { Keyframes } from '@ant-design/cssinjs';
export const antZoomIn = new Keyframes('antZoomIn', {
'0%': {
transform: 'scale(0.2)',
opacity: 0,
},
'100%': {
transform: 'scale(1)',
opacity: 1,
},
});
export const antZoomOut = new Keyframes('antZoomOut', {
'0%': {
transform: 'scale(1)',
},
'100%': {
transform: 'scale(0.2)',
opacity: 0,
},
});