8

The problem is that I have a few DIV's positioned absolutely which have background-size: cover; and their height is calculated by javascript to fill 100% of viewport. On every desktop browser and mobile firefox everything is fine, but on mobile chrome address bar (upon appearing/disappearing) changes $(windows).height(); value. That results in quirky background image rescaling every time it does that. Is there a workaround to always display address bar (so the window height value wouldn't change), or some other solution in keeping background-size: cover; scale the same regardless of the address bar?

Treavis
  • 126
  • 1
  • 5

4 Answers4

1

I know you are speaking of Chrome, but in the case of mobile Safari, new as of ios 7.1, you can add the attribute to the viewport tag "minimal-ui" and this will prevent the navigation bar and the address bar from popping in and out.

Hopefully in the future other browsers, such as Mobile Chrome, will also accept this value.

You can read more here: http://www.mobilexweb.com/blog/ios-7-1-safari-minimal-ui-bugs

skribbz14
  • 845
  • 7
  • 7
1

I wrote a little vanilla JS ES6 npm module to fix the issue:

address-bar-jump-fix

All you have to do is load the module and put a data-attribute on each jumping element.

This is what the script does (simplified):

  • When the user starts scrolling the script saves the initial height of each item that has a certain data-attribute. (data-jump-fix='true')
  • While the user is scrolling and the viewport is resizing, the script prevents the resizing of all selected elements by forcing their initial heights back on them.

The source is compiled to ES5 to support old browsers.

Rotareti
  • 49,483
  • 23
  • 112
  • 108
1

I solved a similar problem using:

$(document).ready(function() {
   var screenHeight = $(window).height();
   $('div_with_background_image').css('height', screenHeight + 'px');
});
littlequest
  • 329
  • 2
  • 7
1

I understand this is an older question, but the Chrome team has made a "fix" to this, which should prevent this issue in the future. It's currently in Canary, but it will hopefully end up in stable soon. It's planned for Chrome M56.

mattrick
  • 3,580
  • 6
  • 27
  • 43
  • Interesting. I am currently running Chrome 57.0.2987.132 on my Samsung Galaxy s4 facing this issue. About to try a workaround to grab window.innerHeight on the scroll event to see if this resolves my height calculation issues. – Eggs Apr 06 '17 at 06:40