detect-zoom icon indicating copy to clipboard operation
detect-zoom copied to clipboard

Cross Browser Zoom and Pixel Ratio Detector

Results 25 detect-zoom issues
Sort by recently updated
recently updated
newest added

Detected zoom values are rounded with two digits: ``` ..., 1, 1.09, 1.2, 1.3, ... ``` It expected that the detected values match the Firefox zoom levels defined by the...

Safari 5.1 has three notions of zooming 1. Discrete full-page zoom (Cmd++) 2. Discrete text-only zoom (Cmd++) with the setting “Zoom Text Only” enabled 3. Continuous pinch zoom using trackpad....

When setting the zoom value to 105% or 110% under MSIE9, detect-zoom will give a value of 1.04... and 1.09... respectively. The expected values are 1.05 and 1.1 respectively. In...

Using test-page.html, I consistently get "Zoom: 1" in FF. I get the expected behavior in Chrome. Here's my browser details: Firefox version 16.0.1 Build identifier: Mozilla/5.0 (X11; Ubuntu; Linux x86_64;...

[According to Neil](http://stackoverflow.com/questions/1713771/how-to-detect-page-zoom-level-in-all-modern-browsers/5078596#comment17264858_5078596), it seems that my matchMedia shim (FF4) is too slow on large documents. If Firefox had scoped stylesheets, they may have helped to improve performance. I'll have...