zarm
Version:
基于 React 的移动端UI库
18 lines (17 loc) • 521 B
TypeScript
import { ReactNode } from 'react';
export interface BaseCarouselProps {
direction?: 'vertical' | 'horizontal';
height?: string | number;
loop?: boolean;
activeIndex?: number;
animationDuration?: number;
swipeable?: boolean;
autoPlay?: boolean;
autoPlayIntervalTime?: number;
moveDistanceRatio?: number;
moveTimeSpan?: number;
showPagination?: boolean;
onChange?: (activeIndex: number) => void;
onChangeEnd?: (activeIndex: number) => void;
children?: ReactNode[];
}