在React中有什么方法可以强制向下滚动以水平移动而不是向上/向下移动吗?

我不确定如何使用handleScroll()方法:

componentDidMount() {
  window.addEventListener('scroll', this.handleScroll);
}

componentWillUnmount() {
  window.removeEventListener('scroll', this.handleScroll);
}

handleScroll(e) {
  e.preventDefault()
}

最佳答案

方法:

  scroll(e) {
    window.scrollBy(e.deltaY, 0)
  }

用法:
<Component onWheel={this.scroll} />

08-25 09:43