欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery实现表格行数据滚动效果

程序员文章站 2022-04-04 13:26:09
本文实例为大家分享了jquery实现表格行数据滚动效果的具体代码,供大家参考,具体内容如下html代码:css样式代码:js代码:使用方法:效果图:以上就是本文的全部内容,希望对大家的学习有所帮助,也...

本文实例为大家分享了jquery实现表格行数据滚动效果的具体代码,供大家参考,具体内容如下

html代码:

<div class="box">
  <div class="box-header">
    <div class="col">测试1</div>
    <div class="col">测试2</div>
    <div class="col">测试3</div>
    <div class="col">测试4</div>
  </div>
  <div id="font-scroll">
    <div class="box-body">
      <div class="row">
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
      </div>
      <div class="row">
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
      </div>
      <div class="row">
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
      </div>
      <div class="row">
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
      </div>
      <div class="row">
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
      </div>
      <div class="row">
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
      </div>
      <div class="row">
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
      </div>
      <div class="row">
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
      </div>
      <div class="row">
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
        <div class="col">测试文字</div>
      </div>
    </div>
  </div>
</div>

css样式代码:

.box {
      width: 400px;
      text-align: center;
      font-size: 14px;
      border: 1px solid rgba(0, 0, 0, .3);
    }

    .box .box-header {
      display: flex;
      justify-content: space-evenly;
    }

    .box-body .row {
      display: flex;
      justify-content: space-evenly;
    }

    .box-header,
    .box-body .row {
      border-bottom: 1px dashed #404040;
    }

    .box .col {
      padding: 10px 0 10px 0;
    }

    .box .col:nth-child(1) {
      width: 80px;
    }

    .box .col:nth-child(2) {
      width: 60px;
    }

    .box .col:nth-child(3) {
      width: 80px;
    }

    .box .col:nth-child(4) {
      width: 60px;
    }

    /* 内容滚动 */

    #font-scroll {
      /* 内容滚动可视高度 */
      height: 199px;
      overflow: hidden;
    }

js代码:

(function ($) {
  $.fn.fontscroll = function (options) {
    let d = { time: 1000 }
    $.extend(d, options);

    // 需要滚动的div父盒子
    let box = this[0]
    // 滚动间隔
    let _time = d.time

    // 这个办法只适合每行数据的高度都相同的情况
    // // 每次滚动的高度(一般是一条数据的高度)
    // let _contentchildheight = box.children[0].children[0].offsetheight
    // // 滚动总高度,即内容的总高度(所有数据的总高度)
    // let _contenttotalheight = _contentchildheight * box.children[0].children.length

    // 这种办法适合所有情况,包括每行数据的高度都不相同的情况
    // 获取所有行元素
    let all_row_el = box.children[0].children
    // 行总高度
    let _contenttotalheight = 0
    // 每一行数据与前面所有行高度的叠加高度
    let _contentchildheight = []
    for (let i in all_row_el) {
      if ((new regexp("^\\d+$")).test(i)) {
        _itemheight = all_row_el[i].offsetheight
        _contenttotalheight += _itemheight
        i == 0 ? _contentchildheight.push(_itemheight) : _contentchildheight.push(_contentchildheight[i - 1] + _itemheight)
      }
    }

    // 需要滚动的div子盒子
    let child1 = this.children('.box-body')
    // 克隆出来滚动的div子盒子
    // 克隆方法一
    // let child1 = this.children('.box-body')[0]
    // let child2 = this.children('.box-body')[1]
    // child2.innerhtml = child1.innerhtml
    // 克隆方法二
    if ((box.offsetheight + 5) < _contenttotalheight) {
      // 如果数据没有达到一定的高度,则不会执行滚动效果
      child1.clone().insertafter(child1)
      /*启动定时器*/
      let timer = setinterval(autoscrollline, 30)
      /*单行向上滚动效果*/
      function autoscrollline() {
        /*判断滚动内容是否已经滚完,滚完了则滚动的值重新设置到0
        否则就每隔30毫秒向上滚动1px*/
        if (box.scrolltop >= _contenttotalheight) {
          box.scrolltop = 0;
        } else {
          box.scrolltop++;
        }
        /*判断滚动的距离刚好为一条數據的高度时停掉定时器,
        隔 _time 之后重新启动定时器即可实现數據滚动停留效果 */
        if (_contentchildheight.indexof(box.scrolltop) >= 0) {
          clearinterval(timer)
          settimeout(() => {
            timer = setinterval(autoscrollline, 30)
          }, _time)
        }
      }
    }
  }
})(jquery);

使用方法:

$('#font-scroll').fontscroll({ time: 1000 });

效果图:

jQuery实现表格行数据滚动效果

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。