3.7.2 • Published 1 year ago

@ice/scrollview v3.7.2

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

@ice/scrollview

npm

ScrollView 是一个包装了滚动操作的容器型组件。一般情况下需要一个确定的高度来保证 ScrollView 的正常展现。

安装

$ npm i @ice/scrollview --save

使用

import ScrollView from '@ice/scrollview';

支持

Web / 小程序

属性

属性类型默认值必填描述支持
scrollEventThrottlenumber50false这个属性控制在滚动过程中,scroll 事件被调用的频率,用于滚动的节流
horizontalboolean-false设置为横向滚动
scrollTopnumber0false竖向滚动距离,优先级高于scrollTo方法(注:运行时小程序无法生效,请使用 scrollTo 方案)
scrollLeftnumber0false横向滚动距离,优先级高于scrollTo方法(注:运行时小程序无法生效,请使用 scrollTo 方案)
showsHorizontalScrollIndicatorbooleantruefalse是否允许出现水平滚动条
showsVerticalScrollIndicatorbooleantruefalse是否允许出现垂直滚动条
onEndReachedThresholdnumber500false设置加载更多的偏移
onEndReachedfunction-false滚动区域还剩onEndReachedThreshold的长度时触发
onScrollfunction-false滚动时触发的事件,返回当前滚动的水平垂直距离
onTouchStartfunction-falsetouchStart 触发的事件,返回触摸点数据(touches、changedTouches)
onTouchMovefunction-falsetouchMove 触发的事件,返回触摸点数据(touches、changedTouches)
onTouchEndfunction-falsetouchEnd 触发的事件,返回触摸点数据(touches、changedTouches)
onTouchCancelfunction-falsetouchCancel 触发的事件,返回触摸点数据(touches、changedTouches)
disableScrollboolean-false是否禁止滚动

方法

scrollTo({x: number,y: number, animated?: boolean, duration?: number})

参数

参数为 object,包含以下属性

属性类型默认值必填描述支持
xnumber- 横向的偏移量
ynumber-纵向的偏移量
animatedbooleantrue在设置滚动条位置时使用动画过渡
durationnumber400animated 设置为 true 时,可以设置 duration 来控制动画的执行时间,单位 ms

scrollIntoView({id: string, animated?: boolean, duration?: number})

参数

参数为 object,包含以下属性

属性类型默认值必填描述支持
idstring-需要滚动到的元素 id
animatedbooleantrue在设置滚动条位置时使用动画过渡
durationnumber400animated 设置为 true 时,可以设置 duration 来控制动画的执行时间,单位 ms

示例

import { createElement, Component, useRef } from 'react';
import ScrollView from '@ice/scrollview';

const THUMBS = new Array(20).fill(1);
const createThumbRow = (val, index) => <Thumb key={index} />;

function Thumb() {
  return (
    <div style={styles.button}>
      <div style={styles.box} />
    </div>
  );
}

function DEMO(props) {
  const [end, setEnd] = useState(false);
  const ref = useRef(null);
  return (
    <div style={styles.root}>
      <div style={styles.container}>
        <ScrollView
          ref={ref}
          style={{ height: '100rpx' }}
          horizontal={true}
          onEndReached={() => setEnd(true)}
        >
          {THUMBS.map(createThumbRow)}
        </ScrollView>

        <div
          style={styles.button}
          onClick={() => {
            ref.current.scrollTo({ x: 0 });
          }}
        >
          <span>Scroll to start</span>
        </div>

        <div style={styles.eventLogBox}>
          <span>
            {end ? 'onEndReached' : ''}
          </span>
        </div>
      </div>
    </div>
  );
}
const styles = {
  root: {
    width: '750rpx',
    paddingTop: '20rpx',
  },
  sticky: {
    position: 'sticky',
    width: '750',
    backgroundColor: '#cccccc',
  },
  container: {
    padding: '20rpx',
    borderStyle: 'solid',
    borderColor: '#dddddd',
    borderWidth: '1rpx',
    marginLeft: '20rpx',
    marginRight: '20rpx',
    marginBottom: '10rpx',
  },
  button: {
    margin: '7rpx',
    padding: '5rpx',
    alignItems: 'center',
    backgroundColor: '#eaeaea',
    borderRadius: '3rpx',
  },
  box: {
    width: '64rpx',
    height: '64rpx',
  },
  eventLogBox: {
    padding: '10rpx',
    margin: '10rpx',
    height: '80rpx',
    borderWidth: '1rpx',
    borderColor: '#f0f0f0',
    backgroundColor: '#f9f9f9',
  },
};