JS监视滚轮向上和向下滑动与滚轮距离上部的距离(转自网络)


    windowAddMouseWheel();  
    function windowAddMouseWheel() {  
        var scrollFunc = function (e) {  
            e = e || window.event;  
            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) {  
            document.addEventListener('DOMMouseScroll', scrollFunc, false);  
        }  
    //滚动滑轮触发scrollFunc方法  
        window.onmousewheel = document.onmousewheel = scrollFunc;  
    }  

 

window.onscroll=function(){

//变量t就是滚动条滚动时,到顶部的距离
var t =document.documentElement.scrollTop||document.body.scrollTop;
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM