Force page zoom at 100% with JS

前端 未结 7 958
旧巷少年郎
旧巷少年郎 2020-11-30 00:51

I created a little game in Canvas, but I have a problem. Some users who have the default zoom set to something other than 100% can\'t see the entire game page.

I ha

7条回答
  •  没有蜡笔的小新
    2020-11-30 01:11

    You can set zoom property on page load

    document.body.style.zoom = 1.0
    

    But, zoom is not a standard property for all browsers, I recommend using transform instead.

    var scale = 'scale(1)';
    document.body.style.webkitTransform =  scale;    // Chrome, Opera, Safari
     document.body.style.msTransform =   scale;       // IE 9
     document.body.style.transform = scale;     // General
    

    http://jsfiddle.net/5RzJ8/

提交回复
热议问题