Saturday, 21 January, 2017 UTC


Summary

If you ever used vh units and tested your work on mobile Chrome (iOS and Android), you probably were annoyed by page jumping when you scroll.
As you probably know vh units are based on the window height. When you scroll, Chrome’s address bar disappears and chrome actually changes window height. Also triggers window resize event. So when it does happen it changes the value of vh unit, making your elements resize, and page jump. On Android, keyboard toggle will do the same.
Well I made a plain JavaScript library to solve this problem.
Demo and documentation are available here.
How does it work?
On load, it will get the element and set them fixed height in pixels, using this formula:
window height / 100 * given vh value 
Library listens for the window resize event, and only if both dimensions are changed (which on mobile means orientation has changed*) it will recalculate and apply fixed height based on new window height.
Library will only do this if it detects Chrome on Android or iOS.
* Android Chrome has a bug, when keyboard pops up, it triggers orientation change.
Usage
It accepts one parameter, which is an array of objects. Every object should have CSS selector and height in vh units. All elements that match given selector will be fixed.
var options = [ { selector: '.Bears', // Mandatory, CSS selector vh: 150, // Mandatory, height in vh units }, { selector: '.Foxes', vh: 50 }, { selector: '.Horses', vh: 100 } ]; var vhFix = new VHChromeFix(options); 
React Component is WIP
I have a React component already done in a another project, but I need to extract it, and pack it up as a separate npm package for easier usage.
Grab the code on GitHub.