码迷,mamicode.com
首页 > 编程语言 > 详细

javaScript判断鼠标滚轮的上下滚动

时间:2015-05-29 11:34:27      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

分享一个js实现判断鼠标滚轮的上下滚动:

 1 <script type="text/javascript">  
 2         var scrollFunc = function (e) {  
 3         e = e || window.event;  
 4         if (e.wheelDelta) {  //判断浏览器IE,谷歌滑轮事件               
 5             if (e.wheelDelta > 0) { //当滑轮向上滚动时  
 6                 alert("滑轮向上滚动");  
 7             }  
 8             if (e.wheelDelta < 0) { //当滑轮向下滚动时  
 9                 alert("滑轮向下滚动");  
10             }  
11         } else if (e.detail) {  //Firefox滑轮事件  
12             if (e.detail> 0) { //当滑轮向上滚动时  
13                 alert("滑轮向上滚动");  
14             }  
15             if (e.detail< 0) { //当滑轮向下滚动时  
16                 alert("滑轮向下滚动");  
17             }  
18         }  
19     }  
20     //给页面绑定滑轮滚动事件  
21     if (document.addEventListener) {//firefox  
22         document.addEventListener(DOMMouseScroll, scrollFunc, false);  
23     }  
24     //滚动滑轮触发scrollFunc方法  //ie 谷歌  
25     window.onmousewheel = document.onmousewheel = scrollFunc;   
26     </script> 

 

javaScript判断鼠标滚轮的上下滚动

标签:

原文地址:http://www.cnblogs.com/xiayahui/p/4537802.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!