1.css的兼容
-ms-overflow-style: none; // 兼容ie滚动条
scrollbar-width: none; // 兼容火狐浏览器
/*定义滚动条宽高及背景,宽高分别对应横竖滚动条的尺寸 chorm*/
::-webkit-scrollbar {
width: 0; /*对垂直流动条有效*/
height: 0; /*对水平流动条有效*/
-ms-overflow-style:none;
overflow:-moz-scrollbars-none;
}
2.滚动条监听 使用短路表达式
handleScroll (e) {
// 判断方向
e = e || window.event; // 兼容事件
let deltaY = e.deltaY || -e.wheelDelta // 兼容ie的滚轮
let direction = deltaY > 0 ? 1: -1
let div = this.$refs.content || document.getElementById("home")
div.scrollLeft += (100 * direction);
}