我的回答

中间高度不变, 根据列表总长度设置虚拟高度, 中数据永远都是那么多条, 增加上下额外滚动具体, 只需要改变数据还有模拟滚动

参考回答

什么是长列表?

前端的业务开发中会遇到一些数据量大且无法使用分页方式来加载的列表,一般把这种列表叫做长列表。完整渲染的长列表基本上很难达到业务上的要求的,非完整渲染的长列表一般有两种方式:

  • 懒渲染: 这个就是常见的无限滚动,每次只渲染一部分(比如15条),等剩余部分滚动到课件区域,就在渲染另一部分
  • 可视区域渲染:只渲染可见部分,不可见部分不渲染

虚拟列表就是采用的可视区渲染方式优化

虚拟列表的实现原理

虚拟列表是一种长列表优化方案,是可视区渲染列表,其中需要知道两个概念:

  • 可滚动区域:假设有1000条数据,每个列表项的高度是30,那么可滚动的区域的高度是1000*30.当用户改变列表的滚动条的当前滚动值的时候,会造成可见区域的内容的改变
  • 可见区域:比如列表的高度是300,右侧有纵向滚动条可以滚动,那么视觉可见的区域就是可见区域

用数组保存所有列表元素的位置,只渲染可视区域内的列表元素,当可视区滚动时,根据滚动的offset大小以及所有列表元素的位置,计算在可视区应该渲染哪些元素

实现参考

实现虚拟列表就是处理滚动条滚动后的可见区域的变更,具体实现的步骤如下:

  1. 计算当前可见区域起始数据的 startIndex
  2. 计算当前可见区域结束数据的 endIndex
  3. 计算当前可见区域的数据,并渲染到页面中
  4. 计算 startIndex 对应的数据在整个列表中的偏移位置 startOffset ,并设置到列表上

核心代码实现

先假想一下:每个列表项的高度都是30px。在这个基准下,核心js代码不超过十行。但是可以完成的实现可见区域的渲染和更新

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>简单实现虚拟列表</title>
  7. </head>
  8. <style>
  9. .list-view {
  10. height: 400px;
  11. overflow: auto;
  12. position: relative;
  13. border: 1px solid #aaa;
  14. }
  15. .list-view-phantom {
  16. /* 使用不可见区域,撑起这个列表,让列表的滚动条出现 */
  17. position: absolute;
  18. left: 0;
  19. top: 0;
  20. right: 0;
  21. z-index: -1;
  22. }
  23. .list-view-content {
  24. left: 0;
  25. right: 0;
  26. top: 0;
  27. position: absolute;
  28. }
  29. .list-view-item {
  30. padding: 5px;
  31. color: #666;
  32. line-height: 30px;
  33. box-sizing: border-box;
  34. }
  35. [v-cloak] {
  36. display: none;
  37. }
  38. </style>
  39. <body>
  40. <div id="app" v-cloak>
  41. <div class="list-view" ref="scrollBox" @scroll="handleScroll">
  42. <div
  43. class="list-view-phantom"
  44. :style="{
  45. height: contentHeight
  46. }"
  47. ></div>
  48. <div ref="content" class="list-view-content">
  49. <div
  50. class="list-view-item"
  51. :style="{
  52. height: itemHeight + 'px'
  53. }"
  54. v-for="item in visibleData"
  55. >
  56. {{ item }}
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
  62. <script>
  63. new Vue({
  64. el: "#app",
  65. computed: {
  66. contentHeight() {
  67. return this.data.length * this.itemHeight + "px";
  68. },
  69. },
  70. mounted() {
  71. this.updateVisibleData();
  72. },
  73. data() {
  74. return {
  75. data: new Array(100).fill(1),
  76. itemHeight: 30,
  77. visibleData: [],
  78. };
  79. },
  80. methods: {
  81. updateVisibleData(scrollTop = 0) {
  82. const visibleCount = Math.ceil(
  83. this.$refs.scrollBox.clientHeight / this.itemHeight
  84. );
  85. const start = Math.floor(scrollTop / this.itemHeight);
  86. const end = start + visibleCount;
  87. this.visibleData = this.data.slice(start, end);
  88. this.$refs.content.style.webkitTransform = `translate3d(0, ${
  89. start * this.itemHeight
  90. }px, 0)`;
  91. },
  92. handleScroll() {
  93. const scrollTop = this.$refs.scrollBox.scrollTop;
  94. this.updateVisibleData(scrollTop);
  95. },
  96. },
  97. });
  98. </script>
  99. </body>
  100. </html>