返回 AiToEarn
loadMoreObserver.ts
根目录 / project / aitoearn-web / src / components / draft-box / components / loadMoreObserver.ts
1 /**
2 * 统一的上拉加载观察器配置
3 * 提前 500px 触发下一页加载,避免滚动到底才开始请求
4 */
5
6 export const LOAD_MORE_OBSERVER_OPTIONS: IntersectionObserverInit = {
7 rootMargin: '0px 0px 500px 0px',
8 threshold: 0,
9 }
10
10 lines TYPESCRIPT