How to detect page zoom level in all modern browsers?

后端 未结 28 1781
慢半拍i
慢半拍i 2020-11-21 05:27
  1. How can I detect the page zoom level in all modern browsers? While this thread tells how to do it in IE7 and IE8, I can\'t find a good cross-browser solution.

28条回答
  •  迷失自我
    2020-11-21 06:10

    Didn't test this for IE, but if you make an element elem with

    min-width: 100%
    

    then

    window.document.width / elem.clientWidth
    

    will give you your browser zoom level (including the document.body.style.zoom factor).

提交回复
热议问题