gpt4 book ai didi

javascript - jQuery 检测 DPI 变化

转载 作者:行者123 更新时间:2023-12-01 05:27:15 24 4
gpt4 key购买 nike

我现在尝试了半天来使用 jQuery 检测 DPI 变化。

场景如下:
我有一台 MacBook Pro(Retina)和一个连接到它的普通屏幕。当我将浏览器窗口从常规窗口移至 MacBook 时,我想检测 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
}
}

不要这样做,因为分辨率只是发生了物理变化。

有什么办法可以实现这一点吗?

最佳答案

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

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

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>

关于javascript - jQuery 检测 DPI 变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39106399/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com