jQuery检测DPI更改

时间:2016-08-23 16:28:30

标签: javascript jquery retina highdpi

我现在尝试使用jQuery检测DPI更改半天。

方案如下:
我有一台MacBook Pro(Retina)和一个连接它的常规屏幕。当我将浏览器窗口从常规窗口移动到MacBooks时,我想检测DPI更改。

显然像

这样的事件
$(window).resize(function() {
  if (window.devicePixelRatio && window.devicePixelRatio >= 1.3) {
    // do retina
  } else {
    // do standard
  }
}

$(document).resize(function() {
  if (window.devicePixelRatio && window.devicePixelRatio >= 1.3) {
    // do retina
  } else {
    // do standard
  }
}

不适用于此,因为分辨率刚刚改变了。

有没有办法实现这个目标?

2 个答案:

答案 0 :(得分:0)

如何使用转换事件和媒体查询

CSS:

body {
  transition:font-size 1ms;
  font-size:1em;
}
@media  only screen and (min-device-pixel-ratio: 2), 
    only screen and (min-resolution: 192dpi) {
      body {
        font-size:1.1em
      }
}

JS:

$("body").bind("transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd", function(){
  $(document).trigger('dpiChange', {pixelRatio: window.devicePixelRatio})
});

$(document).on('dpiChange', function (e, data) {
  if (data.pixelRatio >= 1.3) {
    // do retina
    console.log('retina')
  } else {
    // do standard
    console.log('standard')
  }
})

JSBIN:
http://jsbin.com/siramo/1/edit?html,css,js,console

伟大的Retina特定媒体查询教程:
https://css-tricks.com/snippets/css/retina-display-media-query/

答案 1 :(得分:0)

我刚尝试使用不同分辨率的第二台显示器。

当我将浏览器从第一个屏幕移动到第二个屏幕并返回时,我必须调整浏览器的大小以使您的方法正确无误:

var width = screen.width;
var height = screen.height;

$(window).on('resize', function(e) {
  if (screen.width !== width || screen.height !== height) {
    width = screen.width;
    height = screen.height;
    
    console.log('resolution changed!');
  }
});

但是,如果您不想调整浏览器的高度或宽度,则不会触发此事件。在这种情况下,另一种方法可以用作工作方式: 两个功能,以便:

  • 按时测试当前浏览器分辨率
  • 停止此计时器
  • 使用活动

(function ($) {

  var width = screen.width;
  var height = screen.height;
  var idTimer = null;

  $.fn.startCheckResolution = function (interval) {
    interval = interval || 50;
    idTimer = setInterval(function () {
      if (screen.width !== width || screen.height !== height) {
        width = screen.width;
        height = screen.height;
        $(this).trigger('resolutionChanged');
      }
    }.bind(this), interval);
    return this;
  };

  $.fn.stopCheckResolution = function () {
    if (idTimer != null) {
      clearInterval(idTimer);
      idTimer = null;
    }
  };

}(jQuery));

$(window).startCheckResolution(1000).on('resolutionChanged', function(e) {
  console.log('Resolution changed!');
  // $(window).stopCheckResolution();
});
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>