当滚动距离大于200的时候,可以向左滚动,禁止继续向右滚动?
<div class="scrolling-component" ref="ScrollBox" @scroll="Scroll($event)"></div> const Scroll = (e) => {
const left = ScrollBox.value?.scrollLeft;
if (left > 200) {
//禁止继续向右滚动
}
}
当滚动距离大于200的时候,禁止继续向右滚动 //禁止继续向右滚动 这里怎么写呢?
回答:
const Scroll = (e) => { const ScrollBox = e.target;
const left = ScrollBox.scrollLeft;
if (left > 200) {
ScrollBox.scrollLeft = 200;
}
}
以上是 当滚动距离大于200的时候,可以向左滚动,禁止继续向右滚动? 的全部内容, 来源链接: utcz.com/p/934891.html