mobile chrome fires resize event on scroll

前端 未结 7 1225
独厮守ぢ
独厮守ぢ 2020-11-30 23:20

I\'m using the chrome mobile browser on galaxy s4, android 4.2.2 and for some reason every time I scroll the page down, it fires a resize event verified by the scaling of im

7条回答
  •  星月不相逢
    2020-12-01 00:08

    That sounds strange, but I have seen it in other browsers. You can work around this like so.

    var width = $(window).width(), height = $(window).height();
    

    then in your resize event handler you can do.

    if($(window).width() != width || $(window).height() != height){
      //Do something
    }
    

    I don't know the scope of your functions and all that, but you should get the gist from this.

提交回复
热议问题