我是靠谱客的博主 忧郁毛巾,这篇文章主要介绍js-鼠标滚轮,现在分享给大家,希望可以做个参考。

当鼠标向下滚动 box1变长;
当滚轮向上滚动时,box1变短

第一步:知道滚轮有没有滚动:鼠标滚轮事件--onwheel--在滚轮滚动时候触发

onmousewheel————在火狐中不支持该属性

火狐需要使用:DOMmouseScroll来绑定滚动事件,注意该事件需要通过addEventListener()函数进行绑定

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
function bind(obj, eventStr, callback) { if(obj.addEventListener){ //大部分浏览器 obj.addEventListener(eventStr, callback, false); }else{ //IE8及以下 obj.attachEvent("on"+eventStr, function(){ callback.call(obj);//this是指定的那个对象 }); } };

复制代码
1
2
3
                bind(box1,"DOMMouseScroll",function(){                         alert('s');                         });

两个函数进行优化:实现一个函数 

复制代码
1
2
3
4
5
6
7
8
9
10
11
window.onload = function(event) { var box1 = document.getElementById("box1"); //当鼠标向下滚动 box1变长; //当滚轮向上滚动时,box1变短onwheel box1.onmousewheel=function(){ alert('s'); }; bind(box1,"DOMMouseScroll",box1.onmousewheel); };

alert(event.wheelDelta):鼠标滚轮滚动的方向——不支持火狐

        向上滚动:120

        向下滚动:-120---值不看大小--只看正负

火狐是event.detail

        向上滚动时:-3

        向下滚动 :+3

//当滚轮滚动时,如果浏览器有滚动条,滚动条会随之滚动
//这是浏览器默认行为 可以取消:
  return false;

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
window.onload = function(event) { var box1 = document.getElementById("box1"); //当鼠标向下滚动 box1变长; //当滚轮向上滚动时,box1变短onwheel box1.onmousewheel = function(event) { //判断鼠标滚轮滚动的方向 //兼容火狐和其他 if (event.wheelDelta > 0 || event.detail < 0) { //向上滚动 box1变短 box1.style.height = box1.clientHeight - 10 + "px"; } else { //向下滚动 box1变短 box1.style.height = box1.clientHeight + 10 + "px"; } //当滚轮滚动时,如果浏览器有滚动条,滚动条会随之滚动 //这是浏览器默认行为 可以取消: return false; }; bind(box1, "DOMMouseScroll", box1.onmousewheel); };

//但是火狐不成功,因为取消默认行为在火狐中使用addEventListener()方法绑定响应函数u,取消默认行为的时候不能使用return false;---需要使用event.preventDefault()取消默认行为

 但是IE8不支持preventDefault

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
window.onload = function(event) { var box1 = document.getElementById("box1"); //当鼠标向下滚动 box1变长; //当滚轮向上滚动时,box1变短onwheel box1.onmousewheel = function(event) { //判断鼠标滚轮滚动的方向 //兼容火狐和其他 if (event.wheelDelta > 0 || event.detail < 0) { //向上滚动 box1变短 box1.style.height = box1.clientHeight - 10 + "px"; } else { //向下滚动 box1变短 box1.style.height = box1.clientHeight + 10 + "px"; } //当滚轮滚动时,如果浏览器有滚动条,滚动条会随之滚动 //这是浏览器默认行为 可以取消: event.preventDefault(); return false; }; bind(box1, "DOMMouseScroll", box1.onmousewheel); };

所以需要加判断:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style> #box1 { width: 100px; height: 100px; background-color: #bfa; position: absolute; } </style> <script> function bind(obj, eventStr, callback) { if (obj.addEventListener) { //大部分浏览器 obj.addEventListener(eventStr, callback, false); } else { //IE8及以下 obj.attachEvent("on" + eventStr, function() { callback.call(obj); //this是指定的那个对象 }); } }; window.onload = function(event) { var box1 = document.getElementById("box1"); //当鼠标向下滚动 box1变长; //当滚轮向上滚动时,box1变短onwheel box1.onmousewheel = function(event) { //判断鼠标滚轮滚动的方向 //兼容火狐和其他 if (event.wheelDelta > 0 || event.detail < 0) { //向上滚动 box1变短 box1.style.height = box1.clientHeight - 10 + "px"; } else { //向下滚动 box1变短 box1.style.height = box1.clientHeight + 10 + "px"; } //当滚轮滚动时,如果浏览器有滚动条,滚动条会随之滚动 //这是浏览器默认行为 可以取消: event.preventDefault&&event.preventDefault(); return false; }; bind(box1, "DOMMouseScroll", box1.onmousewheel); }; </script> </head> <body style="height: 2000px;"> <div id="box1"></div> </body> </html>

最后

以上就是忧郁毛巾最近收集整理的关于js-鼠标滚轮的全部内容,更多相关js-鼠标滚轮内容请搜索靠谱客的其他文章。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部