自动修改像素比

来源:互联网 发布:中华民族知乎 编辑:程序博客网 时间:2024/05/16 07:17

<script>

var pixelRatio = 1/window.devicePixelRatio;

document.write('<meta name = "viewport" content = "width = device-width,initial-scale='+pixelRatio+',minimum-scale ='+pixelRatio+', maximum-scale = '+pixelRatio+'">');

</script>