我是靠谱客的博主 幸福音响,最近开发中收集的这篇文章主要介绍判断鼠标滚动方向,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

//鼠标滚动开始
var scrollFunc = function (e) {  
        e = e || window.event;  
		indexCir=$(".intro-num li").index($(".intro-num .active"));//判断当前页面
		
        if (e.wheelDelta) {  //判断浏览器IE,谷歌滑轮事件               
            if (e.wheelDelta > 0) { //当滑轮向上滚动时  
                alert("滑轮向上滚动");
			    
			
            }  
            if (e.wheelDelta < 0) { //当滑轮向下滚动时  
                alert("滑轮向下滚动"); 
			
            }  
        } else if (e.detail) {  //Firefox滑轮事件  
            if (e.detail> 0) { //当滑轮向上滚动时  
                alert("滑轮向上滚动");
			 
            }  
            if (e.detail< 0) { //当滑轮向下滚动时  
               alert("滑轮向下滚动");
			  
            }  
        }  
    }  
    //给页面绑定滑轮滚动事件  
    if (document.addEventListener) {//firefox  
        document.addEventListener('DOMMouseScroll', scrollFunc, false);  
    }  
    //滚动滑轮触发scrollFunc方法  //ie 谷歌  
    window.onmousewheel = document.onmousewheel = scrollFunc;   

最后

以上就是幸福音响为你收集整理的判断鼠标滚动方向的全部内容,希望文章能够帮你解决判断鼠标滚动方向所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部