| 1234567891011121314151617181920212223242526272829303132333435363738 |
- import { Keyframes } from '../../_util/cssinjs';
- import { initMotion } from './motion';
- export const fadeIn = new Keyframes('antFadeIn', {
- '0%': {
- opacity: 0
- },
- '100%': {
- opacity: 1
- }
- });
- export const fadeOut = new Keyframes('antFadeOut', {
- '0%': {
- opacity: 1
- },
- '100%': {
- opacity: 0
- }
- });
- export const initFadeMotion = function (token) {
- let sameLevel = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
- const {
- antCls
- } = token;
- const motionCls = `${antCls}-fade`;
- const sameLevelPrefix = sameLevel ? '&' : '';
- return [initMotion(motionCls, fadeIn, fadeOut, token.motionDurationMid, sameLevel), {
- [`
- ${sameLevelPrefix}${motionCls}-enter,
- ${sameLevelPrefix}${motionCls}-appear
- `]: {
- opacity: 0,
- animationTimingFunction: 'linear'
- },
- [`${sameLevelPrefix}${motionCls}-leave`]: {
- animationTimingFunction: 'linear'
- }
- }];
- };
|