Skip to content

Slide Fade

基本用法

展开

Props

参数名参数类型类型简介示例默认值
fromDirection元素从哪里出现#基本用法'top'
toDirection元素从哪里离开#基本用法'top'
offsetNumber位移距离#基本用法8
onBeforeEnterFunction进入前执行的事件#基本用法() => {}
onEnterFunction元素显示后触发的事件#基本用法() => {}
onLeaveFunction元素离开触发的事件#基本用法() => {}

Types

ts
export type Direction = 'top' | 'left' | 'right' | 'bottom';