标签:
1.dom.onmousewheel = function() { // js鼠标滑动事件 };
IE, Chrome都认识,但是FireFox浏览器,要使用DOMMouseScroll;
2.(e.wheelDelta) //判断浏览器IE,谷歌滑轮事件
(e.detail) //Firefox滑轮事件
当滑轮向上滚动时 大于0;
当滑轮向下滚动时 小于0;
3.http://www.zhangxinxu.com/wordpress/2015/12/element-scroll-prevent-parent-element-scroll-js/ 来自张鑫旭实现代码;
标签:
原文地址:http://www.cnblogs.com/zhangxinxin111/p/5076145.html