Skip to content
On this page

Infinite Scrolling 无限滚动

永远不会到底吗?

基本使用

on-scroll-end 滚动到底触发执行函数

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
加载中...
开启

Attributes

参数说明类型可选值默认值
distance触发距离number / string——0
on-scroll-when滚动时触发的回调ScrollCallback————

Interface

组件导出以下类型定义:

ts
import type { InfiniteScrollingProps, ScrollCallback } from 'fighting-design'

ScrollCallback

ts
type ScrollCallback = () => void

Contributors