美文网首页
vue获取浏览器缩放比例

vue获取浏览器缩放比例

作者: IssunRadiance | 来源:发表于2023-05-17 19:13 被阅读0次
    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;
    },
    

    相关文章

      网友评论

          本文标题:vue获取浏览器缩放比例

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