js
handleScroll(e) {
const ele = rdom.findDOMNode(this);
if (e.nativeEvent.deltaY <= 0) {
if (ele.scrollTop <= 0) {
e.preventDefault();
console.log("up");
}
} else {
if (ele.scrollTop + ele.clientHeight >= ele.scrollHeight) {
e.preventDefault();
console.log("down");
}
}
}
html
<div onWheel={e => this.handleScroll(e)}></div>