javascript - 水平滚动时隐藏绝对定位的 <div> 的最佳方法?

标签 javascript html css vue.js

我这里有一个我目前工作的例子:https://jsfiddle.net/pv5xroLc/

我的问题是,当我的示例中的表格完全向右滚动时,即使不能进一步滚动,褪色的渐变仍然覆盖我的表格的一部分,因此它使最后一列更难阅读。我想知道隐藏此渐变的最佳解决方案是什么,同时仍然清楚地表明表格可以水平滚动(这将出现在移动设备上)。

目前我的html结构如下:

<div class="fader">
    <div class="scrollable">
       *content*
    </div>
</div>

.fader 元素有一个 ::after 伪元素,其中包含“fader”,这是一个绝对定位的元素,具有线性渐变 I 'm 用于指示该元素可以水平滚动。 .scrollable 元素是一个水平滚动元素,用于放置我的表格。


我目前考虑过两种解决方案:

  1. 添加一个监听器来检查滚动条何时到达右侧(like this example) ,然后隐藏或淡出渐变。这样做的问题是我在页面上有不止一张这些褪色的表格,而且我不确定设置这些监听器的最有效方法是什么。我正在为此使用 Vue.js,所以我不确定这是否可以/应该是指令,还是只是在页面上为每个表设置的监听器。
  2. 在表格右侧添加一些空白区域,这样您就可以稍微滚动到实际表格的末尾,渐变就会融入背景。我已尝试向表格和 .scrollable 元素添加填充和边距,但它不会在表格后添加任何额外空间。

如果有人对他们认为我应该做什么提出建议,将不胜感激。

最佳答案

如果我需要实现这个功能,我会制作一个 Vue 组件,它将在 slot 中接收表格内容(或任何内容)。然后监听 .scrollable 的滚动事件div,添加或删除褪色的 ::after如果 div 一直滚动到右侧,则显示内容。

这是一个例子:

Vue.component('fader', {
  template: `
    <div class="fader" :class="{ 'scrolled-right': isScrolledRight }">
      <div class="scrollable" ref="scrollable">
        <slot></slot>
      </div>
    </div>
  `,
  data() {
    return {
      isScrolledRight: false,
    }
  },
  methods: {
    onScroll(event) {
      this.updateIsScrolledRight(event.target);
    },
    updateIsScrolledRight({ scrollLeft, offsetWidth, scrollWidth }) {
      this.isScrolledRight = (scrollLeft + offsetWidth) === scrollWidth;
    }
  },
  mounted() {
    this.$refs.scrollable.addEventListener('scroll', this.onScroll);
    this.updateIsScrolledRight(this.$refs.scrollable);
  },
  destroyed() {
    this.$refs.scrollable.removeEventListeneer('scroll', this.onScroll);
  }
}) 

.fader.scrolled-right::after {
  opacity: 0;
}

组件的工作原理如下:

  • A ref属性添加到 .scrollable div,以便在组件的脚本中轻松引用它。
  • onScroll方法附加到 scrollable 的滚动事件组件为 mounted 时的 ref并在组件为 destroyed 时删除.
  • onScroll方法调用 updateIsScrolledRight方法,将滚动事件的 target 传递给它(.scrollable div)。
  • updateIsScrolledRight方法查看 scrollLeft , offsetWidth , 和 scrollWidth作为参数传递的元素的属性,以确定元素是否一直滚动到右侧并设置 isScrolledRight属性(property)true如果是这样的话 false如果没有。
  • 组件的根 div 有一个边界 :class将添加 scrolled-right 的属性如果 isScrolledRight 的值为 div 类是true .
  • .scrolled-right类设置 div 的 ::after内容有opacity: 0; .
  • updateIsScrolledRight mounted 中也调用了方法 Hook ,如果 <slot> 中的内容碰巧宽度不够需要滚动条,在这种情况下淡入淡出也将被移除。

这是一个完整的工作示例:

Vue.component('fader', {
  template: `
    <div class="fader" :class="{ 'scrolled-right': isScrolledRight }">
      <div class="scrollable" ref="scrollable">
        <slot></slot>
      </div>
    </div>
  `,
  data() {
    return {
      isScrolledRight: false,
    }
  },
  methods: {
    onScroll(event) { 
      this.updateIsScrolledRight(event.target);
    },
    updateIsScrolledRight({ scrollLeft, offsetWidth, scrollWidth }) {
      this.isScrolledRight = (scrollLeft + offsetWidth) === scrollWidth;
    }
  },
  mounted() {
    this.$refs.scrollable.addEventListener('scroll', this.onScroll);
    this.updateIsScrolledRight(this.$refs.scrollable);
  },
  destroyed() {
    this.$refs.scrollable.removeEventListeneer('scroll', this.onScroll);
  }
})

new Vue({
  el: "#app",
})
.fader {
  position: relative;
  width: 90%;
  margin-left: 46px;
}

.fader::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: -1px;
  bottom: 15px;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1), white);
  width: 10%;
  opacity: 1;
  transition: opacity .2s ease-out;
}

.fader .scrollable {
  white-space: nowrap;
  overflow-x: scroll;
  position: relative;
}
  
.fader.scrolled-right::after {
  opacity: 0;
}

.breakdown-title {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin: 8px auto;
}

table {
  font-size: 12px;
  margin: auto;
  color: #000;
  width: 100%;
  table-layout: fixed;
}

table thead {
  color: #fff;
  background-color: #da291c;
}

table thead th {
  width: 75px;
  text-align: right;
}

table thead th:first-of-type {
  width: 120px;
  padding-left: 4px;
}

table thead th:last-of-type {
  width: 80px;
  padding-right: 4px;
}

table tbody tr:nth-of-type(odd) {
  background-color: #fce9e8;
}

table tbody td {
  width: 75px;
  text-align: right;
}
 
table tbody td:first-of-type {
  width: 120px;
  text-align: left;
  padding-left: 4px;
}

table tbody td:last-of-type {
  width: 80px;
  padding-right: 4px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div id="app">
  <fader>
    <div class="breakdown-title">Total Revenue Bonus</div>
    <table>
      <thead>
        <tr>
          <th></th>
          <th>Oct</th>
          <th>Nov</th>
          <th>Dec</th>
          <th>Jan</th>
          <th>Feb</th>
          <th>Mar</th>
          <th>Apr</th>
          <th>May</th>
          <th>Jun</th>
          <th>Jul</th>
          <th>Aug</th>
          <th>Sep</th>
          <th>Year End</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>YTD Target</td>
          <td>$1,325,705</td>
          <td>$2,651,410</td>
          <td>$3,977,115</td>
          <td>$5,302,821</td>
          <td>$6,628,526</td>
          <td>$7,954,231</td>
          <td>$9,279,936</td>
          <td>$10,605,642</td>
          <td>$11,931,347</td>
          <td>$13,257,052</td>
          <td>$14,582,757</td>
          <td>$15,908,463</td>
          <td>$15,908,463</td>
        </tr>
        <tr>
          <td>YTD Actual</td>
          <td>$19,956</td>
          <td>$19,956</td>
          <td>$19,956</td>
          <td>$19,956</td>
          <td>$19,956</td>
          <td>$19,956</td>
          <td>$19,956</td>
          <td>$19,956</td>
          <td>$19,956</td>
          <td>$19,956</td>
          <td>$19,956</td>
          <td>$19,956</td>
          <td>$19,956</td>
        </tr>
        <tr>
          <td>% to Target</td>
          <td>2%</td>
          <td>1%</td>
          <td>1%</td>
          <td>0%</td>
          <td>0%</td>
          <td>0%</td>
          <td>0%</td>
          <td>0%</td>
          <td>0%</td>
          <td>0%</td>
          <td>0%</td>
          <td>0%</td>
          <td>0%</td>
        </tr>
      </tbody>
    </table>
  </fader>
</div>

关于javascript - 水平滚动时隐藏绝对定位的 <div> 的最佳方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54150569/

相关文章:

具有可变时区的 JavaScript 时钟

html - 如果 <tr> 中的 <td> 为空,则填充空白区域

html - 创建大量图形的跨平台电子书的最佳方式?

html - 如何减少表格html中td之间的空间?

iphone - 如何在加载 URL 后将本地样式/JS 应用到 UIWebview

javascript - 具有 asyc 属性的脚本仍然会阻止其他脚本执行

javascript - 三元运算符检查多个字符串

html - 图片大小不适合div

javascript - div 中的 child 点。令人头疼的 jQuery - 第 2 部分

javascript - 使用 javascript 加载 css 文件