Force page zoom at 100% with JS

前端 未结 7 908
旧巷少年郎
旧巷少年郎 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:12

    I think, this is very helpful answer how to detect page zoom level in all modern browsers. Then the answer to your question for IE:

    document.body.style.zoom = screen.logicalXDPI / screen.deviceXDPI;
    
    0 讨论(0)
提交回复
热议问题