if (window.matchMedia("(min-width: 320px)").matches) { alert("width 320"); // works } if (window.matchMedia("(min-width: 768px)").matches) { alert("width 768"); } if (window.matchMedia("(min-resolution: 2.4dppx)").matches) { alert("2.4dppx"); } if (window.matchMedia("(min-resolution: 217dpi)").matches) { dpi = 217; } if (window.matchMedia("(min-resolution: 252dpi)").matches) { dpi = 252; } if (window.matchMedia("(min-resolution: 331dpi)").matches) { dpi = 331; } if (window.matchMedia("(min-resolution: 332dpi)").matches) { dpi = 332; }
我正在testingLumia 920,只有width 320
工作,其他,我想知道DPI。 尝试了一切,它只是最小的决议,这是行不通的。
我认为这是因为你只有最小宽度的定义。 如果你正在寻找最小宽度:320px – 这个查询总是被满足 – 即使你有更大的分辨率。 尝试类似
if (window.matchMedia("(min-width: 320px) and (max-width: 767)").matches) { alert("width 320"); // works }//one px less then the query in next statement