iOS 8 removed "minimal-ui" viewport property, are there other "soft fullscreen" solutions? iOS 8 removed "minimal-ui" viewport property, are there other "soft fullscreen" solutions? ios ios

iOS 8 removed "minimal-ui" viewport property, are there other "soft fullscreen" solutions?


The minimal-ui viewport property is no longer supported in iOS 8. However, the minimal-ui itself is not gone. User can enter the minimal-ui with a "touch-drag down" gesture.

There are several pre-conditions and obstacles to manage the view state, e.g. for minimal-ui to work, there has to be enough content to enable user to scroll; for minimal-ui to persist, window scroll must be offset on page load and after orientation change. However, there is no way of calculating the dimensions of the minimal-ui using the screen variable, and thus no way of telling when user is in the minimal-ui in advance.

These observations is a result of research as part of developing Brim – view manager for iOS 8. The end implementation works in the following way:

When page is loaded, Brim will create a treadmill element. Treadmill element is used to give user space to scroll. Presence of the treadmill element ensures that user can enter the minimal-ui view and that it continues to persist if user reloads the page or changes device orientation. It is invisible to the user the entire time. This element has ID brim-treadmill.

Upon loading the page or after changing the orientation, Brim is using Scream to detect if page is in the minimal-ui view (page that has been previously in minimal-ui and has been reloaded will remain in the minimal-ui if content height is greater than the viewport height).

When page is in the minimal-ui, Brim will disable scrolling of the document (it does this in a safe way that does not affect the contents of the main element). Disabling document scrolling prevents accidentally leaving the minimal-ui when scrolling upwards. As per the original iOS 7.1 spec, tapping the top bar brings back the rest of the chrome.

The end result looks like this:

Brim in iOS simulator.

For the sake of documentation, and in case you prefer to write your own implementation, it is worth noting that you cannot use Scream to detect if device is in minimal-ui straight after the orientationchange event because window dimensions do not reflect the new orientation until the rotation animation has ended. You have to attach a listener to the orientationchangeend event.

Scream and orientationchangeend have been developed as part of this project.


Since there is no programmatic way to mimic minimal-ui, we have come up with a different workaround, using calc() and known iOS address bar height to our advantage:

The following demo page (also available on gist, more technical details there) will prompt user to scroll, which then triggers a soft-fullscreen (hide address bar/menu), where header and content fills the new viewport.

<!doctype html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>Scroll Test</title>    <style>        html, body {            height: 100%;        }        html {            background-color: red;        }        body {            background-color: blue;            margin: 0;        }        div.header {            width: 100%;            height: 40px;            background-color: green;            overflow: hidden;        }        div.content {            height: 100%;            height: calc(100% - 40px);            width: 100%;            background-color: purple;            overflow: hidden;        }        div.cover {            position: absolute;            top: 0;            left: 0;            z-index: 100;            width: 100%;            height: 100%;            overflow: hidden;            background-color: rgba(0, 0, 0, 0.5);            color: #fff;            display: none;        }        @media screen and (width: 320px) {            html {                height: calc(100% + 72px);            }            div.cover {                display: block;            }        }    </style>    <script>        var timeout;        window.addEventListener('scroll', function(ev) {            if (timeout) {                clearTimeout(timeout);            }            timeout = setTimeout(function() {                if (window.scrollY > 0) {                    var cover = document.querySelector('div.cover');                    cover.style.display = 'none';                }            }, 200);        });    </script></head><body>    <div class="header">        <p>header</p>    </div>    <div class="content">        <p>content</p>    </div>    <div class="cover">        <p>scroll to soft fullscreen</p>    </div></body></html>


Just say goodbye to minimal-ui (for now)

It's true, minimal-ui could be both useful and harmful, and I suppose the trade-off now has another balance, in favor of newer, bigger iPhones.

I've been dealing with the issue while working with my js framework for HTML5 apps. After many attempted solutions, each with their drawbacks, I surrendered to considering that space lost on iPhones previous than 6.Given the situation, I think that the only solid and predictable behavior is a pre-determined one.

In short, I ended up preventing any form of minimal-ui, so at least my screen height is always the same and you always know what actual space you have for your app.

With the help of time, enough users will have more room.


EDIT

How I do it

This is a little simplified, for demo purpose, but should work for you. Assuming you have a main container

html, body, #main {  height: 100%;  width: 100%;  overflow: hidden;}.view {  width: 100%;  height: 100%;  overflow: scroll;}

Then:

  1. then with js, I set #main's height to the window's available height. This also helps dealing with other scrolling bugs found in both iOS and Android. It also means that you need to deal on how to update it, just note that;

  2. I block over-scrolling when reaching the boundaries of the scroll. This one is a bit more deep in my code, but I think you can as well follow the principle of this answer for basic functionality. I think it could flickr a little, but will do the job.


See the demo (on a iPhone)

As a sidenote: this app too is bookmarkable, as it uses an internal routing to hashed addresses, but I also added a prompt iOS users to add to home. I feel this way helps loyalty and returning visitors (and so the lost space is back).