搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Are there some Javascript or Jquery to adjust layout.css.devPixelsPerPx?

more options

I am using Firefox 44.0.2. Everything appearing in this browser is too big comparing to Chrome and Internet Explorer. I learn layout.css.devPixelsPerPx in Firefox controls the above matter. I can manually adjust Firefox's resolution by entering 1 in css.devPixelsPerPx (the default is -1) and then everything looks smaller in Firefox browser.

I wonder if are there some Javascript or Jquery code to adjust layout.css.devPixelsPerPx? so that when end users use the application, the application will automatically adjust Firefox's dimension. Please give me a hand. Thanks

I am using Firefox 44.0.2. Everything appearing in this browser is too big comparing to Chrome and Internet Explorer. I learn layout.css.devPixelsPerPx in Firefox controls the above matter. I can manually adjust Firefox's resolution by entering 1 in css.devPixelsPerPx (the default is -1) and then everything looks smaller in Firefox browser. I wonder if are there some Javascript or Jquery code to adjust layout.css.devPixelsPerPx? so that when end users use the application, the application will automatically adjust Firefox's dimension. Please give me a hand. Thanks

所有回覆 (2)

more options

No, definitely not. Web pages cannot change Firefox preferences.

But pages can detect some parameters related to the user's resolution. For example, what if you knew that Firefox users see text 25% larger than the standard browser default of 96ppi? You can get that from window.devicePixelRatio (it might only exist in Firefox).

I have a couple demo pages online that you could play with to get some ideas, but neither is a complete solution:

more options

Actually, the window.devicePixelRatio is not strictly speaking an indication of the default zoom level, since the user can modify it using the zoom feature. So you may want to be careful "undoing" the zoom in case that's actually the user's preference.