window.devicePixelRatio是设备上物理像素和设备独立像素(device-independent pixels (dips))的比例。
公式表示就是:window.devicePixelRatio = 物理像素 / dips
若dpr >
http://www.zhangxinxu.com/wordpress/2012/08/window-devicepixelratio/
(function () {
var tid
function recal () {
var width = document.documentElement.clientWidth
var rem = 100 * (width / 640)
document.documentElement.style.fontSize = rem + 'px'
}
window.addEventListener('resize', function () {
clearTimeout(tid)
tid = setTimeout(recal, 300)
}, false)
recal()
})()
网友评论