美文网首页
监听页面缩放

监听页面缩放

作者: _____西班木有蛀牙 | 来源:发表于2020-07-27 11:30 被阅读0次
image.png
// detect resize
(function() {
  var oldresize = window.onresize;
  window.onresize = function(e) {
    var event = window.event || e;
    if(typeof(oldresize) === 'function' && !oldresize.call(window, event)) {
      return false;
    }
    if(typeof(window.onzoom) === 'function') {
      return window.onzoom.call(window, event);
    }
  }
})();

function detectZoom() {
  var ratio = 0,
      screen = window.screen,
      ua = navigator.userAgent.toLowerCase();

  if (window.devicePixelRatio !== undefined) {
    ratio = window.devicePixelRatio;
  }
  else if (~ua.indexOf('msie')) {
    if (screen.deviceXDPI && screen.logicalXDPI) {
      ratio = screen.deviceXDPI / screen.logicalXDPI;
    }
  }
  else if (window.outerWidth !== undefined && window.innerWidth !== undefined) {
    ratio = window.outerWidth / window.innerWidth;
  }

  if (ratio) {
    ratio = Math.round(ratio * 100);
  }
  return ratio;
}


window.onzoom = function(e) {
  console.log(detectZoom() + '%')
};

相关文章

网友评论

      本文标题:监听页面缩放

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