我在这里有一个当前工作的例子:https://jsfiddle.net/pv5xroLc/
我的问题是,当示例中的表格完全向右滚动时,即使无法进一步滚动,渐变的渐变仍然覆盖了表格的一部分,因此使最后一列更难以阅读。我想知道隐藏此渐变的最佳解决方案是什么,同时还要使表格可以水平滚动(这将出现在移动设备上)。
当前,我的html结构如下:
<div class="fader">
<div class="scrollable">
*content*
</div>
</div>
.fader
元素上有一个::after
伪元素,其中包含“推子”,这是一个绝对定位的元素,我要使用线性渐变来指示该元素可以水平滚动。 .scrollable
元素是一个水平滚动元素,用于保存我的表格。
我目前有两种解决方案:
.scrollable
元素中添加填充和边距,但是在表格之后没有添加任何额外的空间。如果有人对我认为应该做的事情有建议,将不胜感激。
答案 0 :(得分:3)
如果需要实现此功能,我将制作一个Vue组件,该组件将在slot
中包含表内容(或任何内容),然后侦听.scrollable
的滚动事件。 div,如果div一直向右滚动,则添加或删除褪色的::after
内容。
这是一个例子:
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;
}
组件的工作方式如下:
ref
属性添加到.scrollable
div中,以便可以在组件的脚本中轻松引用它。onScroll
时,scrollable
引用将附加到mounted
ref的滚动事件上,而当组件为destroyed
时将被删除。onScroll
方法调用一个updateIsScrolledRight
方法,并向其传递滚动事件的target
(.scrollable
div)。updateIsScrolledRight
方法查看作为参数传递的元素的scrollLeft
,offsetWidth
和scrollWidth
属性,以确定该元素是否一直滚动到右侧,并将isScrolledRight
属性设置为true
,否则设置false
。:class
属性,如果scrolled-right
的值为isScrolledRight
,它将为div添加true
类。.scrolled-right
类将div的::after
内容设置为具有opacity: 0;
。updateIsScrolledRight
钩子中也调用mounted
方法,这样,如果<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>
答案 1 :(得分:1)
(我宁愿在OP上发表评论而不是回答,但由于我太新了,因此我不能为此发表评论。
之前,我已经处理过类似的事情,而按照上述#2解决方案的想法,我的快速破解将是在<th>
之后添加另一个<th>Year End</th>
,然后使用适当的宽度进行样式匹配渐变消失。然后,您可以决定是否还要在其下方插入空白<td>
。
我还注意到您的白色渐变在其开始处有一条非常漂亮的白线(就在“ $ 9”上方)-您可以通过添加更多参考点在SCSS的第15/16行中平滑它(花了我一个同时想一想这件事,只是为了以防万一):
background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), white);
width: 30%;