mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
25 lines
395 B
TypeScript
25 lines
395 B
TypeScript
|
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,
|
||
|
},
|
||
|
});
|