ryanve / response.js

Responsive design toolkit
http://responsejs.com
Other
801 stars 123 forks source link

17px difference in the viewport in Mozilla #17

Closed jazz009 closed 10 years ago

jazz009 commented 11 years ago

Hi, First off all thank you so much for this amazing work. It helps a lot improving my mobile first approach.

I noticed that in Mozilla Firefox, there is a 17px difference between the viewport of a page using response.js and the "real" viewport.

For example if I open the test page (http://responsejs.com/test/) in Mozilla using the adaptive mode (Ctrl + maj + m) and i choose 800 x1280 in the drop down list i will have R.viewportW() 783

After testing a website i'm working on, i found again this 17px difference in the viewport. I call an image to replace the default text at 641px but the change take place at 658px

The same thing append in IE9, but not in Chrome.

Did you ever noticed something like that, or am I missing something ?

Thank you again for your time

ryanve commented 11 years ago

@jaz009 Sure thing—nice find =] Response currently uses document.documentElement.clientWidth which is the same as jQuery(window).width(). Mozilla adaptive mode seems to use window.innerWidth. Emulators do not necessarily measure the same as an actual device. E.g. compare 320x480 to a real iPhone or to Chrome's emulator in Dev tools » Settings » Overrides. All 3 are different. At first I thought it was just an issue with the emulator but it's in FF in general. I updated the test and you see the issue in FF near the breakpoints.

Response.viewportW() is designed to give the layout viewport. I originally opted to use .clientWidth in Response because it seemed more consistent with browsers, with actual media queries, and with jQuery. To be the most practical matching actual media queries seems paramount. You agree? See this live comparison. I just added the correctedViewportW() technique. It detects which method corresponds to matchMedia.

var correctedViewportW = (function (win, docElem) {

    var mM = win['matchMedia'] || win['msMatchMedia']
      , client = docElem['clientWidth']
      , inner = win['innerWidth']

    return mM && client < inner && true === mM('(min-width:' + inner + 'px)')['matches']
        ? function () { return win['innerWidth'] }
        : function () { return docElem['clientWidth'] }

}(window, document.documentElement));

I'm open to switching .viewportW()/.viewportH() to that effect.

jazz009 commented 11 years ago

Hi Ryan,

Thank you for the quick answer and all the references on your post.

You are right, the main thing for me is to match the actual media queries in order to have a consistent experience It seems that it's working on the live comparison page, so I would gladly use it.

Now, I don't have your experience on the subject to see if this could have a downside somewhere else...

ryanve commented 11 years ago

@jazz009 Unless someone chimes in here with a reason against it, I'll add the change in the next version ( which should be fairly soon :) Thanks again—I'll let you know when the update is available.

jazz009 commented 11 years ago

Hi Ryan

my pleasure, and thank you for working on this update.

Let me know if I can help you with translation (English/french) or other things on this project.

ryanve commented 11 years ago

@jazz009 I added the viewportW/viewportH fix in 0.7.5 and I'll keep you in mind about translating—that's great. Once #15 is sorted out they'll be updates to the docs. I've been holding off on updating the homepage until then. I'm planning on put the docs on github for group editing.

alanhogan commented 11 years ago

Was experiencing something like this in 0.6.x — excited to try the fix in the latest response.js. Cheers.

alanhogan commented 11 years ago

0.7.5 didn’t seem to fully resolve this for me. Is that expected?

ryanve commented 11 years ago

@alanhogan I thought that would fully resolve it at standard zoom. Thanks for the catch. Does it work at standard zoom? It's still just Firefox, right? Please see if you can isolate a discrepency on test/#sets or a circumstance where the "correctedViewportW" looks incorrect on dimensions/#viewport

alanhogan commented 11 years ago

I was at standard zoom, and yes, as far as I can tell, it was still just Firefox. I’m kind of working on a deadline, and we realized that Firefox isn’t super popular and is just not used on mobile devices, so I’m disabling responsive behavior on Firefox for now. (FYI: I set all my breakpoints to zero for this mode.)

alanhogan commented 11 years ago

I think the problem is that I was using my own code to set a class on <html> dynamically on crossover and using your R.viewportW() method; I also tried switching to correctedViewportW() as provided above, and I must be doing something wrong, because it didn’t seem to have an effect.

At both of my breakpoints, there are 18 resolutions (the 17px range that was mentioned) that mis-match JS and CSS measurements.

I have a 720px breakpoint; here are the smallest and largest window sizes that exhibit a mis-match:

Screen Shot 2013-01-15 at 8 21 21 PM and Screen Shot 2013-01-15 at 7 11 51 PM

A similar thing happens around my 960px breakpoint: Screen Shot 2013-01-15 at 8 16 29 PM

Here is the code in question:


Response.addTest("r2012", (function(R) {
  return function(breakpoint) {
    return correctedViewportW() >= r2012BandsHash[breakpoint];
  };
})(Response)).create({
  prefix: "r-",
  prop: "r2012",
  breakpoints: ["mobile", "tablet", "desktop"],
  dynamic: true
});
alanhogan commented 11 years ago

Er, I am using Response.band to test if I am in the current band or not, actually, is the code that I’m running to set those classes. I think I added the wrong code up there — that’s just my Response config, obviously.

I’m guessing Response.band hasn’t been updated with the fix, and so my observed behavior would be expected, correct?

ryanve commented 11 years ago

Response.band itself should be fine because is calculated from Response.viewportW rather than remeasured. If it is still inaccurate then it may be an issue Response.viewportW or in the function passed to Response.addTest.

ryanve commented 10 years ago

This was better fixed in 0.7.9 based on information from https://github.com/ryanve/verge/issues/7

fvpDev commented 8 years ago

Um, just a thought: isn't the 17px difference because of the scrollbar? The difference between browsers is probably due to the different ways the scrollbar is rendered and whether it is considered part of the viewport or not, neh?