本文介绍了window.devicePixelRatio在IE 10 Mobile中不起作用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用window.devicePixelRatio,它可以在Andriod和Iphone上运行,但在IE 10 Windows Mobile中不起作用。任何替代方案?
I am using window.devicePixelRatio which works on Andriod and Iphone but does not work in IE 10 Windows mobile. any alternative?
推荐答案
window.devicePixelRatio = window.devicePixelRatio ||
Math.round(window.screen.availWidth / document.documentElement.clientWidth)
得到了来自
这篇关于window.devicePixelRatio在IE 10 Mobile中不起作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!