美文网首页
鼠标滚动事件

鼠标滚动事件

作者: 冰J冰 | 来源:发表于2016-05-04 15:53 被阅读24次

    把百度地图引动到当前页面时,会出现这种情况:鼠标在地图上滚动时,页面也会滚动。怎么让地图动、页面不动呢?代理基于jquery的mousewheel事件,组织事件冒泡。$('body').delegate('#allmap','mousewheel',function(){ console.log('map wheel'); return false;});
    ok测试没有问题。

    This method is working in IE9+, Chrome 33, and Firefox 27.
    
    $(window).bind('mousewheel DOMMouseScroll', function(event){
         if (event.originalEvent.wheelDelta > 0 || event.originalEvent.detail < 0) {
             // scroll up
             alert("up");
         }
         else {
             // scroll down
          alert("down");
         }
     });
    

    相关文章

      网友评论

          本文标题:鼠标滚动事件

          本文链接:https://www.haomeiwen.com/subject/vtgrrttx.html