笔记本电脑鼠标怎么滚动

发布时间: 2023-04-16 11:39 阅读: 文章来源:转载

// 鼠标滚动事件windowAddMouseWheel() {let that = this;var scrollFunc = function (e) {e = e || window.event;if (e.wheelDelta) {//判断浏览器IE,谷歌滑轮事件if (e.wheelDelta > 0) {//当滑轮向上滚动时console.log("向上滚动")}else if(e.wheelDelta < 0){console.log("向下滚动")}} else if (e.detail) {//Firefox滑轮事件if (e.detail > 0) {//当滑轮向上滚动时 console.log("向上滚动")}else if (e.detail < 0) {//当滑轮向下滚动时 console.log("向下滚动")}}};//给页面绑定滑轮滚动事件if (document.addEventListener) {//火狐使用DOMMouseScroll绑定document.addEventListener("DOMMouseScroll", scrollFunc, false);}//其他浏览器直接绑定滚动事件window.onmousewheel = document.onmousewheel = scrollFunc;},

没了,结束了,是不是很简单呐,如有错误,欢迎留言.如有问题,不吝赐教。如果此篇博文对您有帮助,还请动动小手点赞 收藏 ⭐留言 呐~,谢谢 ~ ~

•••展开全文
相关文章