翼度科技»论坛 编程开发 JavaScript 查看内容

前端虚拟滚动列表实现代码(vue虚拟列表)

8

主题

8

帖子

24

积分

新手上路

Rank: 1

积分
24
前言

方法一利用浏览器原生api去实现,可以实现不等高的列表虚拟滚动,intersectionObserver 多用于图片懒加载,虚拟滚动列表
方法二通过监听滚动条的位置,去计算显示的内容,这里需要列表等高,当然不等高也可以计算,稍微改改

前端虚拟滚动列表(方法一:利用IntersectionObserver api 简单)


  • IntersectionObserver可以用来自动监听元素是否进入了设备的可视区域之内,而不需要频繁的计算来做这个判断。由于可见(visible)的本质是,目标元素与视口产生一个交叉区,所以这个 API 叫做"交叉观察器"IntersectionObserver 方案多用于图片懒加载或者列表虚拟滚动
IntersectionObserver 是浏览器原生提供的构造函数,接受两个参数: callback:可见性发现变化时的回调函数 option:配置对象(可选)。构造函数的返回值是一个观察器实例。实例一共有4个方法:

  • observe:开始监听特定元素
  • unobserve:停止监听特定元素
  • disconnect:关闭监听工作
  • takeRecords:返回所有观察目标的对象数组
  • callback 参数
    目标元素的可见性变化时,就会调用观察器的回调函数callback。
    callback一般会触发两次。一次是目标元素刚刚进入视口,另一次是完全离开视口。
  1. const io = new IntersectionObserver((changes, observer) => {
  2.   console.log(changes);
  3.   console.log(observer);
  4. });
复制代码

  • options


  • threshold: 决定了什么时候触发回调函数。它是一个数组,每个成员都是一个门槛值,默认为[0],即交叉比例(intersectionRatio)达到0时触发回调函数。用户可以自定义这个数组。比如,[0, 0.25, 0.5, 0.75, 1]就表示当目标元素 0%、25%、50%、75%、100% 可见时,会触发回调函数。
  • root: 用于观察的根元素,默认是浏览器的视口,也可以指定具体元素,指定元素的时候用于观察的元素必须是指定元素的子元素
  • rootMargin: 用来扩大或者缩小视窗的的大小,使用css的定义方法,10px 10px 30px 20px表示top、right、bottom 和 left的值
    ————————————————
这里是后面补充的简单还原了下面方法二的例子,重点在60行,从哪儿看就可以
  1. <template>
  2.   <div class="big-box">
  3.     <div class="download-box txt" id="scrollable-div">
  4.       <div v-for="(item, index) in props.seqText" :key="index" class="line-box">
  5.         <template v-if="index === 0 && start === 0">
  6.           <div :class="{ 'text-title': props.collapsed, 'text-title-samll': !props.collapsed }">
  7.             {{ item }}
  8.           </div>
  9.         </template>
  10.         <template v-else>
  11.           <div :class="{ 'text-number': props.collapsed, 'text-number-samll': !props.collapsed }">
  12.             {{ calLine(item, index + start) }}
  13.           </div>
  14.           <div
  15.             :class="{ 'text-box': props.collapsed, 'text-box-samll': !props.collapsed }"
  16.             :data="item"
  17.           >
  18.             ''
  19.           </div>
  20.           <div :class="{ 'text-number2': props.collapsed, 'text-number2-samll': !props.collapsed }">
  21.             {{ endRow(item, index + start) }}
  22.           </div>
  23.         </template>
  24.       </div>
  25.     </div>
  26.   </div>

  27.   <SearchBox :againFind="againFind" />
  28. </template>

  29. <script lang="ts" setup>
  30. import { watch, onMounted, PropType, reactive, ref } from 'vue';

  31. import SearchBox from '/@/components/SearchBox/index.vue';
  32. import { message } from 'ant-design-vue';

  33. const props = defineProps({
  34.   collapsed: {
  35.     type: Boolean,
  36.     default: true,
  37.   },
  38.   seqText: {
  39.     type: Array as PropType<string[]>,
  40.     default: [''],
  41.   },
  42. });
  43. let width = 100;
  44. const geneTexts: Array<string> = [];
  45. const data = reactive({
  46.   geneTexts,
  47. });

  48. const calLine = (item: any, index: number) => {
  49.   return width * (index - 1) + 1;
  50. };
  51. const endRow = (item: any, index: number) => {
  52.   return width * index;
  53. };

  54. //  这里是核心要点
  55. const io = new IntersectionObserver(
  56.   (entries) => {
  57.     console.log(entries);
  58.     for (const entry of entries) {
  59.       if (entry.isIntersecting) {
  60.         const elTxt = entry.target;
  61.         // console.log(elTxt.getAttribute('data'));
  62.         elTxt.innerHTML = elTxt.getAttribute('data');
  63.         io.unobserve(elTxt);
  64.       }
  65.     }
  66.   },
  67.   {
  68.     root: document.getElementById('scrollable-div'),
  69.     // rootMargin: 0,
  70.     threshold: 0.5,
  71.   },
  72. );
  73. setTimeout(() => {
  74.   const elList = document.querySelectorAll('.text-box');
  75.   console.log(elList);
  76.   elList.forEach((element) => {
  77.     io.observe(element);
  78.   });
  79. }, 1000);

  80. const againFind = ref(1);

  81. let start = ref(0);
  82. </script>

  83. <style lang="less" scoped>
  84. // @import '/@/assets/styles/views/medaka.less';
  85. .big-box {
  86.   background: #282c34;
  87.   padding: 30px 20px;
  88.   height: 870px;
  89. }
  90. .download-box {
  91.   width: 100%;
  92.   // padding: 0px 20px;
  93.   // outline: 1px solid rgb(17, 0, 255);
  94.   overflow: hidden;

  95.   .line-box {
  96.     .flex-type(flex-start);
  97.     height: 30px;
  98.   }

  99.   &.txt {
  100.     background: #282c34;
  101.     color: #fff;
  102.     height: 810px;
  103.     overflow: auto;

  104.     .el-row {
  105.       display: flex;
  106.       align-items: center;
  107.       margin-bottom: 10px;
  108.       margin: auto;
  109.       font-size: 22px;
  110.     }
  111.   }
  112. }

  113. @media screen and (min-width: 1842px) {
  114.   .text-box-samll {
  115.     letter-spacing: 1.5px;
  116.     font-size: 15px;
  117.   }

  118.   .text-number-samll {
  119.     min-width: 60px;
  120.     font-size: 15px;
  121.   }

  122.   .text-number2-samll {
  123.     margin-left: 20px;
  124.     min-width: 60px;
  125.     font-size: 15px;
  126.   }

  127.   .text-title-samll {
  128.     font-size: 15px;
  129.   }

  130.   .text-box {
  131.     font-size: 22px;
  132.     // letter-spacing: 3px;
  133.   }

  134.   .text-number {
  135.     min-width: 100px;
  136.     font-size: 22px;
  137.   }

  138.   .text-number2 {
  139.     margin-left: 20px;
  140.     min-width: 100px;
  141.     font-size: 22px;
  142.   }

  143.   .text-title {
  144.     font-size: 22px;
  145.   }
  146. }
  147. @media screen and (min-width: 1600px) and (max-width: 1841px) {
  148.   .text-box-samll {
  149.     font-size: 15px;
  150.   }

  151.   .text-number-samll {
  152.     min-width: 40px;
  153.     font-size: 15px;
  154.   }

  155.   .text-number2-samll {
  156.     margin-left: 20px;
  157.     min-width: 40px;
  158.     font-size: 15px;
  159.   }

  160.   .text-title-samll {
  161.     font-size: 15px;
  162.   }

  163.   .text-box {
  164.     font-size: 20px;
  165.     // letter-spacing: 1.2px;
  166.   }

  167.   .text-number {
  168.     min-width: 60px;
  169.     font-size: 20px;
  170.   }

  171.   .text-number2 {
  172.     margin-left: 20px;
  173.     min-width: 60px;
  174.     font-size: 20px;
  175.   }

  176.   .text-title {
  177.     font-size: 20px;
  178.   }
  179. }

  180. @media screen and (min-width: 1443px) and (max-width: 1599px) {
  181.   .text-box-samll {
  182.     font-size: 13px;
  183.   }

  184.   .text-number-samll {
  185.     min-width: 40px;
  186.     font-size: 13px;
  187.   }

  188.   .text-number2-samll {
  189.     margin-left: 20px;
  190.     min-width: 40px;
  191.     font-size: 13px;
  192.   }

  193.   .text-title-samll {
  194.     font-size: 13px;
  195.   }

  196.   .text-box {
  197.     font-size: 18px;
  198.     // letter-spacing: 1.2px;
  199.   }

  200.   .text-number {
  201.     min-width: 60px;
  202.     font-size: 15px;
  203.   }

  204.   .text-number2 {
  205.     margin-left: 20px;
  206.     min-width: 60px;
  207.     font-size: 18px;
  208.   }

  209.   .text-title {
  210.     font-size: 18px;
  211.   }
  212. }

  213. @media screen and (max-width: 1442px) {
  214.   .text-box-samll {
  215.     font-size: 11px;
  216.   }

  217.   .text-number-samll {
  218.     min-width: 40px;
  219.     font-size: 11px;
  220.   }

  221.   .text-number2-samll {
  222.     margin-left: 20px;
  223.     min-width: 40px;
  224.     font-size: 11px;
  225.   }

  226.   .text-title-samll {
  227.     font-size: 11px;
  228.   }

  229.   .text-box {
  230.     font-size: 16px;
  231.     // letter-spacing: 1.2px;
  232.   }

  233.   .text-number {
  234.     min-width: 60px;
  235.     font-size: 15px;
  236.   }

  237.   .text-number2 {
  238.     margin-left: 20px;
  239.     min-width: 60px;
  240.     font-size: 16px;
  241.   }

  242.   .text-title {
  243.     font-size: 16px;
  244.   }
  245. }
  246. </style>
复制代码
前端虚拟滚动列表(方法二:监听滚动计算 麻烦)

在大型的企业级项目中经常要渲染大量的数据,这种长列表是一个很普遍的场景,当列表内容越来越多就会导致页面滑动卡顿、白屏、数据渲染较慢的问题;大数据量列表性能优化,减少真实dom的渲染
看图:绿色是显示区域,绿色和蓝色中间属于预加载:解决滚动闪屏问题;大致了解了流程在往下看;


实现效果:

先说一下你看到这么多真实dom节点是因为做了预加载,减少滚动闪屏现象,这里写了300行,可以根据实际情况进行截取


实现思路:

虚拟列表滚动大致思路:两个div容器
  1.   外层:外部容器用来固定列表容器的高度,同时生成滚动条
  2.   内层:内部容器用来装元素,高度是所有元素高度的和
  3.   外层容器鼠标滚动事件  dom.scrollTop 获取滚动条的位置
  4.   根据每行列表的高以及当前滚动条的位置,利用slice() 去截取当前需要显示的内容
  5.   重点:滚动条的高度是有内层容器的paddingBottom 和 paddingTop 属性顶起来了,确保滚动条位置的准确性
  6.   这里鼠标上下滚动会出现闪屏问题:解决方案如下:
  7.       方案一:  预加载:
  8.                     向下预加载:                        比如div滚动区域显示30行,就预加载 300行( 即这里 slice(startIndex,startIndex + 300) ),
  9.                     向上预加载:                        在滚动监听事件函数中(computeRow)判断inner的paddingTop和paddingBottom即可
  10.                     当然这里的download-box的padding有30px像素,在加一个div,overflow:hidded就解决了
  11.       方案二:缩小滚动范围或者节流时间缩短,这里写的500ms
复制代码
具体代码
  1.   <template>
  2.     <div class="enn">
  3.       <div class="download-box txt" id="scrollable-div" @scroll="handleScroll">
  4.         <div id="inner">
  5.           <div v-for="(item, index) in data2" :key="index" class="line-box">
  6.             <div :class="{ 'text-box': props.collapsed, 'text-box-samll': !props.collapsed }">
  7.               {{ item }}
  8.             </div>
  9.           </div>
  10.         </div>
  11.       </div>
  12.     </div>
  13.   </template>

  14.   <script lang="ts" setup>
  15.   import { onMounted, PropType, ref } from 'vue';

  16.   import { useText } from './hooks/useText';

  17.   const props = defineProps({
  18.     baseData: {
  19.       type: Object as PropType<{
  20.         taskId: string;
  21.         barcodeName: string;
  22.       }>,
  23.       default: {},
  24.     },
  25.     collapsed: {
  26.       type: Boolean,
  27.       default: true,
  28.     },
  29.     type: {
  30.       type: Boolean,
  31.       default: false,
  32.     },
  33.   });

  34.   const { data } = useText(props.type);

  35.   //  这里大数据量数组是  data.geneTexts

  36.   /**
  37.    * 虚拟列表滚动大致思路:两个div容器
  38.    *
  39.    *    外层:外部容器用来固定列表容器的高度,同时生成滚动条
  40.    *
  41.    *    内层:内部容器用来装元素,高度是所有元素高度的和
  42.    *
  43.    *    外层容器鼠标滚动事件  dom.scrollTop 获取滚动条的位置
  44.    *
  45.    *    根据每行列表的高以及当前滚动条的位置,利用slice() 去截取当前需要显示的内容
  46.    *
  47.    *    重点:滚动条的高度是有内层容器的paddingBottom 和 paddingTop 属性顶起来了,确保滚动条位置的准确性
  48.    *
  49.    *    这里鼠标上下滚动会出现闪屏问题:解决方案如下:
  50.    *
  51.    *        方案一:  预加载:
  52.    *
  53.    *                      向下预加载:
  54.    *                          比如div滚动区域显示30行,就预加载 300行( 即这里 slice(startIndex,startIndex + 300) ),
  55.    *
  56.    *                      向上预加载:
  57.    *                          在滚动监听事件函数中(computeRow)判断inner的paddingTop和paddingBottom即可
  58.    *
  59.    *                      当然这里的download-box的padding有30px像素,在加一个div,overflow:hidded就解决了
  60.    *
  61.    *        方案二:缩小滚动范围或者节流时间缩短,这里写的500ms
  62.    *
  63.    *
  64.    */

  65.   let timer_throttle: any;
  66.   const throttle = (func: Function, wait?: number) => {
  67.     wait = wait || 500;
  68.     if (!timer_throttle) {
  69.       timer_throttle = setTimeout(() => {
  70.         func.apply(this);
  71.         timer_throttle = null;
  72.       }, wait);
  73.     }
  74.   };

  75.   // 鼠标滚动事件
  76.   const handleScroll = (event: any) => throttle(computeRow, 100);
  77.   // 计算当前显示tab
  78.   const computeRow = () => {
  79.     // console.log('距离顶部距离', window.scrollY, geneTexts);

  80.     let scrollableDiv = document.getElementById('scrollable-div');
  81.     let topPosition = scrollableDiv.scrollTop;
  82.     let leftPosition = scrollableDiv.scrollLeft;
  83.     console.log('垂直滚动位置:', topPosition, '水平滚动位置:', leftPosition);

  84.     const startIndex = Math.max(0, Math.floor(topPosition / 30));
  85.    
  86.     const endIndex = startIndex + 300;
  87.     data2.value = data.geneTexts.slice(startIndex, endIndex);

  88.     let inner = document.getElementById('inner');
  89.     if (topPosition < 2700) {
  90.       // 向上预计加载,这里判断了三个高度,可以多判断几个,增加流畅度
  91.       inner.style.paddingTop = topPosition + 'px';
  92.       inner.style.paddingBottom = (data.geneTexts.length + 2) * 30 - topPosition + 'px';
  93.     } else if (topPosition + data2.value.length * 30 >= data.geneTexts.length * 30) {
  94.       // 这里 9000 是 内层div的高度 30 * 300   理解div高度是 padding+div内容高度
  95.       inner.style.paddingTop = topPosition - 900 + 'px'; //900 是div的高度
  96.       inner.style.paddingBottom = 0 + 'px';
  97.     } else {
  98.       inner.style.paddingTop = topPosition - 2700 + 'px';
  99.       inner.style.paddingBottom = (data.geneTexts.length + 2) * 30 + 2700 - topPosition + 'px';
  100.     }
  101.   };
  102.   const data2 = ref([]);
  103.   const init = () => {
  104.     data2.value = data.geneTexts.slice(0, 300);
  105.     let inner = document.getElementById('inner');
  106.     inner.style.paddingTop = 0 + 'px';
  107.     inner.style.paddingBottom = (data.geneTexts.length + 2) * 30 - 900 + 'px';
  108.   };
  109.   </script>

  110.   <style lang="less" scoped>
  111.   .button-box {
  112.     margin-bottom: 25px;
  113.     .flex-type(flex-end);

  114.     :deep(.ant-btn) {
  115.       margin-left: 10px;
  116.     }
  117.   }
  118.   .enn {
  119.     background: #282c34;
  120.     outline: 1px solid red;
  121.     padding: 30px 20px;
  122.     height: 960px;
  123.   }
  124.   .download-box {
  125.     width: 100%;
  126.     // padding: 30px 20px;
  127.     outline: 1px solid rgb(17, 0, 255);
  128.     background-color: #fff;
  129.     overflow: hidden;

  130.     .line-box {
  131.       .flex-type(flex-start);
  132.       height: 30px;
  133.     }

  134.     &.txt {
  135.       background: #282c34;
  136.       color: #fff;
  137.       height: 900px;
  138.       overflow: auto;
  139.     }
  140.   }
  141.   </style>
复制代码
替代方案

上面是自己写的,github上面还有好多插件可以用,但各有优劣,根据自己需求选择
如:
vue-virtual-scroller
https://github.com/Akryum/vue-virtual-scroller/tree/0f2e36248421ad69f41c9a08b8dcf7839527b8c2
vue-virt-list
vue-draggable-virtual-scroll-list
virtual-list
自己找吧,我就不一一列举了,看图
  1. <template>
  2.   <br />
  3.   <div>
  4.     <Table
  5.       :columns="tableConfig.columns"
  6.       :data="tableConfig.totalData"
  7.       :loading="tableConfig.loading"
  8.       :pagination="false"
  9.     ></Table>
  10.   </div>
  11.   <br />

  12.   <div class="button-box">
  13.     <a-select
  14.       v-model:value="selection"
  15.       placeholder="请选择序列"
  16.       :options="seqOptions"
  17.       @change="
  18.         (selection:string) => handleChangeSeq(baseData.taskId, baseData.barcodeName, width, selection)
  19.       "
  20.     ></a-select>
  21.     <a-button type="primary" @click="handleClickExport()">导出所有序列</a-button>
  22.     <a-button type="primary" @click="modalConfig.visible = true">导出当前序列</a-button>
  23.   </div>
  24.   <!-- <SeqText :collapsed="props.collapsed" :seqText="data.geneTexts" /> -->
  25.   <div class="enn">
  26.     <div class="download-box txt" id="scrollable-div" @scroll="handleScroll">
  27.       <div id="inner">
  28.         <div v-for="(item, index) in data2" :key="index" class="line-box">
  29.           <template v-if="index === 0 && start === 0">
  30.             <div :class="{ 'text-title': props.collapsed, 'text-title-samll': !props.collapsed }">
  31.               {{ item }}
  32.             </div>
  33.           </template>
  34.           <template v-else>
  35.             <div :class="{ 'text-number': props.collapsed, 'text-number-samll': !props.collapsed }">
  36.               {{ calLine(item, index + start) }}
  37.             </div>
  38.             <div :class="{ 'text-box': props.collapsed, 'text-box-samll': !props.collapsed }">
  39.               {{ item }}
  40.             </div>
  41.             <div
  42.               :class="{ 'text-number2': props.collapsed, 'text-number2-samll': !props.collapsed }"
  43.             >
  44.               {{ endRow(item, index + start) }}
  45.             </div>
  46.           </template>
  47.         </div>
  48.       </div>
  49.     </div>
  50.   </div>
  51.   <br />

  52.   <a-modal
  53.     title="导出文件"
  54.     :visible="modalConfig.visible"
  55.     @ok="handleExport(data.geneTexts)"
  56.     @cancel="modalConfig.visible = false"
  57.   >
  58.     <div class="form-box">
  59.       <a-form>
  60.         <a-form-item label="自定义文件名">
  61.           <a-input v-model:value="modalConfig.name" placeholder="请输入自定义文件名"></a-input>
  62.         </a-form-item>
  63.       </a-form>
  64.     </div>
  65.   </a-modal>
  66. </template>

  67. <script lang="ts" setup>
  68. import { defineComponent, onMounted, PropType, ref } from 'vue';

  69. import Table from '/@/components/table/sTable.vue';
  70. import SeqText from '/@/components/SeqText/index.vue';

  71. import { useText, useTable } from './hooks/useText';
  72. import { useModal } from './hooks/useModal';
  73. import { serverAddress } from '/@/serve/index';
  74. import { download, downloadTxt } from '/@/libs/utils/download';

  75. const props = defineProps({
  76.   /**
  77.    * 基础数据
  78.    */
  79.   baseData: {
  80.     type: Object as PropType<{
  81.       taskId: string;
  82.       barcodeName: string;
  83.     }>,
  84.     default: {},
  85.   },
  86.   collapsed: {
  87.     type: Boolean,
  88.     default: true,
  89.   },
  90.   type: {
  91.     type: Boolean,
  92.     default: false,
  93.   },
  94. });

  95. let width = 100;
  96. const { taskId, barcodeName } = props.baseData;
  97. const { data, getMedaka, getAvailableSeq, handleChangeSeq, seqOptions, selection } = useText(
  98.   props.type,
  99. );
  100. const { tableConfig, getTable } = useTable(props.type);

  101. const VITE_APP_URL = serverAddress();
  102. const { modalConfig, handleExport } = useModal();
  103. const handleClickExport = () => {
  104.   let path = '';
  105.   if (props.type) {
  106.     path = VITE_APP_URL + `outputs/${taskId}/fastq_analysis/${barcodeName}/ragtag.fasta`;
  107.   } else {
  108.     path =
  109.       VITE_APP_URL + `outputs/${taskId}/fastq_analysis/${barcodeName}/${barcodeName}.final.fasta`;
  110.   }

  111.   download(path, '.fasta');
  112. };
  113. const calLine = (item: any, index: number) => {
  114.   return width * (index - 1) + 1;
  115. };
  116. const endRow = (item: any, index: number) => {
  117.   return width * index;
  118. };
  119. onMounted(() => {
  120.   getAvailableSeq(taskId, barcodeName).then(() => {
  121.     if (seqOptions.value.length > 0) {
  122.       getMedaka(taskId, barcodeName, width, seqOptions.value[0].value).then(() => init());
  123.       // getMedaka(taskId, barcodeName, width);
  124.     }
  125.   });
  126.   getTable(taskId, barcodeName);
  127. });

  128. /**
  129. * 虚拟列表滚动大致思路:两个div容器
  130. *
  131. *    外层:外部容器用来固定列表容器的高度,同时生成滚动条
  132. *
  133. *    内层:内部容器用来装元素,高度是所有元素高度的和
  134. *
  135. *    外层容器鼠标滚动事件  dom.scrollTop 获取滚动条的位置
  136. *
  137. *    根据每行列表的高以及当前滚动条的位置,利用slice() 去截取当前需要显示的内容
  138. *
  139. *    重点:滚动条的高度是有内层容器的paddingBottom 和 paddingTop 属性顶起来了,确保滚动条位置的准确性
  140. *
  141. *    这里鼠标上下滚动会出现闪屏问题:解决方案如下:
  142. *
  143. *        方案一:  预加载:
  144. *
  145. *                      向下预加载:
  146. *                          比如div滚动区域显示30行,就预加载 300行( 即这里 slice(startIndex,startIndex + 300) ),
  147. *  
  148. *                      向上预加载:
  149. *                          在滚动监听事件函数中(computeRow)判断inner的paddingTop和paddingBottom即可
  150. *  
  151. *                      当然这里的download-box的padding有30px像素,在加一个div,overflow:hidded就解决了
  152. *
  153. *        方案二:缩小滚动范围或者节流时间缩短,这里写的500ms
  154. *
  155. *
  156. */

  157. let timer_throttle: any;
  158. const throttle = (func: Function, wait?: number) => {
  159.   wait = wait || 500;
  160.   if (!timer_throttle) {
  161.     timer_throttle = setTimeout(() => {
  162.       func.apply(this);
  163.       timer_throttle = null;
  164.     }, wait);
  165.   }
  166. };
  167. let start = ref(0);
  168. // 鼠标滚动事件
  169. const handleScroll = (event: any) => throttle(computeRow, 100);
  170. // 计算当前显示tab
  171. const computeRow = () => {
  172.   // console.log('距离顶部距离', window.scrollY, geneTexts);

  173.   let scrollableDiv = document.getElementById('scrollable-div');
  174.   let topPosition = scrollableDiv.scrollTop;
  175.   let leftPosition = scrollableDiv.scrollLeft;
  176.   console.log('垂直滚动位置:', topPosition, '水平滚动位置:', leftPosition);

  177.   const startIndex = Math.max(0, Math.floor(topPosition / 30));
  178.   start.value = startIndex;
  179.   const endIndex = startIndex + 300;
  180.   data2.value = data.geneTexts.slice(startIndex, endIndex);

  181.   let inner = document.getElementById('inner');
  182.   if (topPosition < 2700) {
  183.     // 向上预计加载,这里判断了三个高度,可以多判断几个,增加流畅度
  184.     inner.style.paddingTop = topPosition + 'px';
  185.     inner.style.paddingBottom = (data.geneTexts.length + 2) * 30 - topPosition + 'px';
  186.   } else if (topPosition + data2.value.length * 30 >= data.geneTexts.length * 30) {
  187.     // 这里 9000 是 内层div的高度 30 * 300
  188.     inner.style.paddingTop = topPosition - 900 + 'px'; //900 是div的高度
  189.     inner.style.paddingBottom = 0 + 'px';
  190.   } else {
  191.     inner.style.paddingTop = topPosition - 2700 + 'px';
  192.     inner.style.paddingBottom = (data.geneTexts.length + 2) * 30 + 2700 - topPosition + 'px';
  193.   }
  194. };
  195. const data2 = ref([]);
  196. const init = () => {
  197.   data2.value = data.geneTexts.slice(0, 300);
  198.   let inner = document.getElementById('inner');
  199.   inner.style.paddingTop = 0 + 'px';
  200.   inner.style.paddingBottom = (data.geneTexts.length + 2) * 30 - 900 + 'px';
  201. };
  202. </script>

  203. <style lang="less" scoped>
  204. // @import '../../../../assets/styles/views/medaka.less';

  205. .button-box {
  206.   margin-bottom: 25px;
  207.   .flex-type(flex-end);

  208.   :deep(.ant-btn) {
  209.     margin-left: 10px;
  210.   }
  211. }
  212. .enn {
  213.   background: #282c34;
  214.   outline: 1px solid red;
  215.   padding: 30px 20px;
  216.   height: 960px;
  217. }
  218. .download-box {
  219.   width: 100%;
  220.   // padding: 30px 20px;
  221.   outline: 1px solid rgb(17, 0, 255);
  222.   background-color: #fff;
  223.   overflow: hidden;

  224.   .line-box {
  225.     .flex-type(flex-start);
  226.     height: 30px;
  227.   }

  228.   &.txt {
  229.     background: #282c34;
  230.     color: #fff;
  231.     height: 900px;
  232.     overflow: auto;

  233.     .el-row {
  234.       display: flex;
  235.       align-items: center;
  236.       margin-bottom: 10px;
  237.       margin: auto;
  238.       font-size: 22px;
  239.     }
  240.   }
  241. }

  242. .form-box {
  243.   .flex-type(center);
  244. }

  245. :deep(.ant-select-selector) {
  246.   min-width: 120px;
  247. }

  248. @media screen and (min-width: 1842px) {
  249.   .text-box-samll {
  250.     letter-spacing: 1.5px;
  251.     font-size: 15px;
  252.   }

  253.   .text-number-samll {
  254.     min-width: 60px;
  255.     font-size: 15px;
  256.   }

  257.   .text-number2-samll {
  258.     margin-left: 20px;
  259.     min-width: 60px;
  260.     font-size: 15px;
  261.   }

  262.   .text-title-samll {
  263.     font-size: 15px;
  264.   }

  265.   .text-box {
  266.     font-size: 22px;
  267.     // letter-spacing: 3px;
  268.   }

  269.   .text-number {
  270.     min-width: 100px;
  271.     font-size: 22px;
  272.   }

  273.   .text-number2 {
  274.     margin-left: 20px;
  275.     min-width: 100px;
  276.     font-size: 22px;
  277.   }

  278.   .text-title {
  279.     font-size: 22px;
  280.   }
  281. }

  282. @media screen and (min-width: 1600px) and (max-width: 1841px) {
  283.   .text-box-samll {
  284.     font-size: 15px;
  285.   }

  286.   .text-number-samll {
  287.     min-width: 40px;
  288.     font-size: 15px;
  289.   }

  290.   .text-number2-samll {
  291.     margin-left: 20px;
  292.     min-width: 40px;
  293.     font-size: 15px;
  294.   }

  295.   .text-title-samll {
  296.     font-size: 15px;
  297.   }

  298.   .text-box {
  299.     font-size: 20px;
  300.     // letter-spacing: 1.2px;
  301.   }

  302.   .text-number {
  303.     min-width: 60px;
  304.     font-size: 15px;
  305.   }

  306.   .text-number2 {
  307.     margin-left: 20px;
  308.     min-width: 60px;
  309.     font-size: 20px;
  310.   }

  311.   .text-title {
  312.     font-size: 20px;
  313.   }
  314. }

  315. @media screen and (min-width: 1443px) and (max-width: 1599px) {
  316.   .text-box-samll {
  317.     font-size: 13px;
  318.   }

  319.   .text-number-samll {
  320.     min-width: 40px;
  321.     font-size: 13px;
  322.   }

  323.   .text-number2-samll {
  324.     margin-left: 20px;
  325.     min-width: 40px;
  326.     font-size: 13px;
  327.   }

  328.   .text-title-samll {
  329.     font-size: 13px;
  330.   }

  331.   .text-box {
  332.     font-size: 18px;
  333.     // letter-spacing: 1.2px;
  334.   }

  335.   .text-number {
  336.     min-width: 60px;
  337.     font-size: 15px;
  338.   }

  339.   .text-number2 {
  340.     margin-left: 20px;
  341.     min-width: 60px;
  342.     font-size: 18px;
  343.   }

  344.   .text-title {
  345.     font-size: 18px;
  346.   }
  347. }

  348. @media screen and (max-width: 1442px) {
  349.   .text-box-samll {
  350.     font-size: 11px;
  351.   }

  352.   .text-number-samll {
  353.     min-width: 40px;
  354.     font-size: 11px;
  355.   }

  356.   .text-number2-samll {
  357.     margin-left: 20px;
  358.     min-width: 40px;
  359.     font-size: 11px;
  360.   }

  361.   .text-title-samll {
  362.     font-size: 11px;
  363.   }

  364.   .text-box {
  365.     font-size: 16px;
  366.     // letter-spacing: 1.2px;
  367.   }

  368.   .text-number {
  369.     min-width: 60px;
  370.     font-size: 15px;
  371.   }

  372.   .text-number2 {
  373.     margin-left: 20px;
  374.     min-width: 60px;
  375.     font-size: 16px;
  376.   }

  377.   .text-title {
  378.     font-size: 16px;
  379.   }
  380. }
  381. </style>
复制代码
总结

到此这篇关于前端虚拟滚动列表(vue虚拟列表)的文章就介绍到这了,更多相关前端虚拟滚动列表内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/javascript/323307co2.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具