function isRetinaDisplay() {
if (window.matchMedia) {
var mq = window.matchMedia("only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 2.6/2), only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (min-device-pixel-ratio: 1.3), only screen and (min-resolution: 1.3dppx)");
return (mq && mq.matches || (window.devicePixelRatio > 1));
} }
'web > jQuery' 카테고리의 다른 글
ECMAScript6 (0) | 2016.06.06 |
---|---|
script로 HTML DOM을 생성/추가 하면 왜 bind()/on()이 작동하지 않을까? (2) | 2015.09.24 |
파이어폭스 / IE 에서 scoll 이벤트가 안될때 (0) | 2015.09.18 |
jquery change (0) | 2012.11.21 |
Useful jQuery Datepicker (0) | 2012.11.20 |