js获取浏览器缩放比例

Posted ~逍遥★星辰~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取浏览器缩放比例相关的知识,希望对你有一定的参考价值。

前几天在做项目的时候遇到浏览器缩放比例不为100%时,出来的页面不正常,于是找到了方法获取其比例来通知用户

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;
};

推荐地址:http://www.jb51.net/article/55753.htm

以上是关于js获取浏览器缩放比例的主要内容,如果未能解决你的问题,请参考以下文章

判断显示器分辨率,并实现网页缩放,类似于浏览器缩小比例的js代码

js获取分辨率和缩放页面的方法

JS控制浏览器网页内容的百分比缩放

火狐浏览器怎样设置默认的页面缩放比例?

如何清除d3.zoom事件设置的缩放比例

手机网页大小怎么调整