overflow-x: hidden is breaking jquery scroll event

后端 未结 5 435
灰色年华
灰色年华 2021-01-07 23:14

I am having an issue where setting overflow-x: hidden on the html and body elements is preventing the jquery scroll event from firing.

CSS:

html, bod         


        
5条回答
  •  灰色年华
    2021-01-07 23:53

    $(function() {
        $(window).bind('mousewheel', function(event, delta) {
            console.log("mousewheel");
            return false;
        });
    });
    

提交回复
热议问题