要在页面中隐藏滚动条,您必须添加:
CSS:
body{
overflow: hidden;
}
并为使用鼠标的 blcok 滚动添加 js :
function preventScroll(e){
e.preventDefault();
e.stopPropagation();
return false;
}
document.querySelector('body').addEventListener('wheel', preventScroll);