失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > JS 获取浏览器显示比例 缩放比例

JS 获取浏览器显示比例 缩放比例

时间:2020-01-11 03:55:37

相关推荐

JS 获取浏览器显示比例 缩放比例

JS不能调整浏览器的显示比例,仅能查看

//调整浏览器显示比例【仅能查看】function ChangeRatio(){var ratio=0;var screen=window.screen;var ua=navigator.userAgent.toLowerCase();if(window.devicePixelRatio !== undefined){ratio=window.devicePixelRatio; }else if(~ua.indexOf('msie')){if(screen.deviceXDPI && screen.logicalXDPI){ratio=screen.deviceXDPI/screen.logicalXDPI; }}else if(window.outerWidth !== undefined && window.innerWidth !== undefined){ratio=window.outerWidth/window.innerWidth;}if(ratio){ratio=Math.round(ratio*100); }return ratio;}

css 判断

@media screen and (resolution: 1.25dppx) {}

如果觉得《JS 获取浏览器显示比例 缩放比例》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。