This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The VisualViewport
interface of the the Visual Viewport API represents the visual viewport for a given window. For a page containing iframes, each iframe, as well as the containing page, will have a unique window object. Each window on a page will have a unique VisualViewport
representing the properties associated with that window. You can get a window's viewport using Window.visualViewport
.
VisualViewport.offsetleft
Read only
VisualViewport.offsetTop
Read only
VisualViewport.pageLeft
Read only
VisualViewport.pageTop
Read only
VisualViewport.width
Read only
VisualViewport.height
Read only
VisualViewport.scale
Read only
VisualViewport.onresize
VisualViewport.onscroll
This example, taken from the Visual Viewport README, shows how to use this API to simulate position: device-fixed
, which fixes elements to the visual viewport. A live sample is also available.
var bottomBar = document.getElementById('bottombar'); var viewport = window.visualViewport; function viewportHandler() { var layoutViewport = document.getElementById('layoutViewport'); // Since the bar is position: fixed we need to offset it by the visual // viewport's offset from the layout viewport origin. var offsetLeft = viewport.offsetLeft; var offsetTop = viewport.height - layoutViewport.getBoundingClientRect().height + viewport.offsetTop; // You could also do this by setting style.left and style.top if you // use width: 100% instead. bottomBar.style.transform = 'translate(' + offsetLeft + 'px,' + offsetTop + 'px) ' + 'scale(' + 1/viewport.scale + ')' } window.visualViewport.addEventListener('scroll', viewportHandler); window.visualViewport.addEventListener('resize', viewportHandler);
Specification | Status | Comment |
---|---|---|
Visual Viewport API The definition of 'VisualViewport' in that specification. | Draft | Initial definition. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 60 | ? | ? | 47 | ? |
onresize | 62 | ? | ? | 49 | ? |
onscroll | 62 | ? | ? | 49 | ? |
Feature | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support | 60 | 60 | ? | ? | ? | 47 | ? |
onresize | 62 | ? | ? | ? | ? | 49 | ? |
onscroll | 62 | ? | ? | ? | ? | 49 | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/VisualViewport