首页 > 其他 > 详细

Scrollbar滚动条组件的实现

时间:2020-09-15 17:12:38      阅读:65      评论:0      收藏:0      [点我收藏+]

div滚动条可以做多个区块的多内容展示

使用方式:

import Scrollbar from ‘../common/scrollbar‘

<Scrollbar className={styles.body} scroll={this.onScroll}>
{内部内容}
</Scrollbar>

引入直接使用,内部是要展示的长内容

styles.body设置区块占用宽高,scroll是滚动到底部时才进行触发,一般用于做滚动加载下一页数据关于滚动加载,可在之后文章加入。

先看实现:

import React from "react";

export default class Scrollbar extends React.Component {
  onScroll = () => {
    const parentHeight = this.scrollbar.offsetHeight || this.scrollbar.innerHeight;
    const childrenHeight = this.view.offsetHeight;
    const scrollTop = this.scrollbar.scrollTop;
    const {scroll} = this.props;
    childrenHeight - parentHeight - scrollTop < 50 && scroll && scroll();
  };

  render() {
    const {className, children} = this.props;
    return <div className={className} ref={ref => this.scrollbar = ref} onScroll={this.onScroll.bind(this)}>
      <div ref={ref => this.view = ref}>
        {children}
      </div>
    </div>
  }
}

 

Scrollbar滚动条组件的实现

原文:https://www.cnblogs.com/wuhairui/p/13673408.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!