vue设置滚动条
努力尝试! 人气:0vue设置滚动条
vue如何在div中设置滚动条呢?
首先需要写一下css样式
<div :style="{'max-height': this.timeLineHeight + 'px' }" style="overflow-y:scroll;" > </div>
在这个div中,放的是你写的前端代码。它是可以滚动的。
在mounted中改变最大高度的大小。这个减210,它减的是我标头的高度,你的具体高度需要根据实际情况来减。
mounted() { this.timeLineHeight = document.documentElement.clientHeight - 210; window.onresize = () => { this.timeLineHeight = document.documentElement.clientHeight - 210; }; },
在data中声明一下属性
data() { return { timeLineHeight: "", } }
这样就可以了!
vue控制滚动条
只要想要在Vue中直接操作DOM元素,就必须用ref属性进行注册
<div @click = 'roll(1)'>向左移动</div> <div class='nav' ref="nav"></div> <div @click = 'roll(2)'>向右移动</div>
.nav{ overflow- (x,y) = hidden /*宽高啥的。。。。。 }
x或y轴做隐藏
roll(index){ if(index==1){ //滚动的数值 或者 +- = 值 或者死的数值 就是相应位置 //还有相应的 scrollTop 方法 this.$refs.nav.scrollLeft += 50 }else{ this.$refs.nav.scrollLeft -= 50 } }
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
加载全部内容