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.
25 lines
395 B
25 lines
395 B
3 years ago
|
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,
|
||
|
},
|
||
|
});
|