mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2024-11-10 17:49:18 +08:00
161 lines
3.4 KiB
TypeScript
161 lines
3.4 KiB
TypeScript
|
import type { CSSInterpolation } from '@antd-tiny-vue/cssinjs'
|
||
|
import { Keyframes } from '@antd-tiny-vue/cssinjs'
|
||
|
import type { AliasToken } from '../../theme/internal'
|
||
|
import type { TokenWithCommonCls } from '../../theme/util/genComponentStyleHook'
|
||
|
import { initMotion } from './motion'
|
||
|
|
||
|
export const moveDownIn = new Keyframes('antMoveDownIn', {
|
||
|
'0%': {
|
||
|
transform: 'translate3d(0, 100%, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 0
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'translate3d(0, 0, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 1
|
||
|
}
|
||
|
})
|
||
|
|
||
|
export const moveDownOut = new Keyframes('antMoveDownOut', {
|
||
|
'0%': {
|
||
|
transform: 'translate3d(0, 0, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 1
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'translate3d(0, 100%, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 0
|
||
|
}
|
||
|
})
|
||
|
|
||
|
export const moveLeftIn = new Keyframes('antMoveLeftIn', {
|
||
|
'0%': {
|
||
|
transform: 'translate3d(-100%, 0, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 0
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'translate3d(0, 0, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 1
|
||
|
}
|
||
|
})
|
||
|
|
||
|
export const moveLeftOut = new Keyframes('antMoveLeftOut', {
|
||
|
'0%': {
|
||
|
transform: 'translate3d(0, 0, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 1
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'translate3d(-100%, 0, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 0
|
||
|
}
|
||
|
})
|
||
|
|
||
|
export const moveRightIn = new Keyframes('antMoveRightIn', {
|
||
|
'0%': {
|
||
|
transform: 'translate3d(100%, 0, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 0
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'translate3d(0, 0, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 1
|
||
|
}
|
||
|
})
|
||
|
|
||
|
export const moveRightOut = new Keyframes('antMoveRightOut', {
|
||
|
'0%': {
|
||
|
transform: 'translate3d(0, 0, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 1
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'translate3d(100%, 0, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 0
|
||
|
}
|
||
|
})
|
||
|
|
||
|
export const moveUpIn = new Keyframes('antMoveUpIn', {
|
||
|
'0%': {
|
||
|
transform: 'translate3d(0, -100%, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 0
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'translate3d(0, 0, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 1
|
||
|
}
|
||
|
})
|
||
|
|
||
|
export const moveUpOut = new Keyframes('antMoveUpOut', {
|
||
|
'0%': {
|
||
|
transform: 'translate3d(0, 0, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 1
|
||
|
},
|
||
|
|
||
|
'100%': {
|
||
|
transform: 'translate3d(0, -100%, 0)',
|
||
|
transformOrigin: '0 0',
|
||
|
opacity: 0
|
||
|
}
|
||
|
})
|
||
|
|
||
|
type MoveMotionTypes = 'move-up' | 'move-down' | 'move-left' | 'move-right'
|
||
|
const moveMotion: Record<MoveMotionTypes, { inKeyframes: Keyframes; outKeyframes: Keyframes }> = {
|
||
|
'move-up': {
|
||
|
inKeyframes: moveUpIn,
|
||
|
outKeyframes: moveUpOut
|
||
|
},
|
||
|
'move-down': {
|
||
|
inKeyframes: moveDownIn,
|
||
|
outKeyframes: moveDownOut
|
||
|
},
|
||
|
'move-left': {
|
||
|
inKeyframes: moveLeftIn,
|
||
|
outKeyframes: moveLeftOut
|
||
|
},
|
||
|
'move-right': {
|
||
|
inKeyframes: moveRightIn,
|
||
|
outKeyframes: moveRightOut
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export const initMoveMotion = (token: TokenWithCommonCls<AliasToken>, motionName: MoveMotionTypes): CSSInterpolation => {
|
||
|
const { antCls } = token
|
||
|
const motionCls = `${antCls}-${motionName}`
|
||
|
const { inKeyframes, outKeyframes } = moveMotion[motionName]
|
||
|
|
||
|
return [
|
||
|
initMotion(motionCls, inKeyframes, outKeyframes, token.motionDurationMid),
|
||
|
{
|
||
|
[`
|
||
|
${motionCls}-enter,
|
||
|
${motionCls}-appear
|
||
|
`]: {
|
||
|
opacity: 0,
|
||
|
animationTimingFunction: token.motionEaseOutCirc
|
||
|
},
|
||
|
|
||
|
[`${motionCls}-leave`]: {
|
||
|
animationTimingFunction: token.motionEaseInOutCirc
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|