--- title: VisualViewport slug: Web/API/VisualViewport tags: - API - Experimental - Interface - NeedsTranslation - Reference - TopicStub - Visual Viewport API - VisualViewport - viewport translation_of: Web/API/VisualViewport ---
{{SeeCompatTable}}{{APIRef("Visual Viewport")}}
Visual Viewport API 提供了当前页面的视觉视口接口,即 VisualViewport
。对于每个页面容器来说(如 iframe),都存在有一个独立的 window 对象。每个页面容器的 window 对象都有一个独立的 VisualViewport
属性。
你可以使用 {{domxref("Window.visualViewport")}} 获得对应 window 的视觉视口 API。
注意:与布局视口(layout viewport)不同的是:只有最上层的 window 才有视觉视口(visual viewport)这一概念。因此只有最上层 window 的 VisualViewport
属性才是有效的,其他层的视觉视口属性可看作是布局视口属性的别名。比如,对于一个 {{htmlelement("iframe")}} ,其对应的视觉视口属性 {{domxref("VisualViewport.width")}} 相当于对应的布局视口属性,如 {{domxref("Element.clientWidth", "document.documentElement.clientWidth")}}.
VisualViewport
从其父元素继承属性 {{domxref("EventTarget")}}。
通过使用 addEventListener()
或者将监听回调函数赋值给对应的 oneventname
属性,可以为对应的视口事件添加监听。
resize
scroll
这个例子取自 Visual Viewport README,展示了如何在用户缩放时隐藏某个盒子(或元素)。这对于增强一个页面在缩放时的用户体验有重要意义。同样,你也可以查看另一个 例子 。
var bottomBar = document.getElementById('bottombar');
var viewport = window.visualViewport;
function resizeHandler() {
if (viewport.scale > 1.3)
bottomBar.style.display = "none";
else
bottomBar.style.display = "block";
}
window.visualViewport.addEventListener('resize', resizeHandler);
这个例子同样取自 Visual Viewport README ,展示了如何使用视觉视口 API,从而模拟 position: device-fixed
的 CSS 属性。类似于 position: fixed
,这一属性可将被设置的元素固定在视觉视口特定位置。此外,你也可以查看另一个 例子 。
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);
注意:应小心使用上述方案,使用这种方式模拟的 position: device-fixed
可能会导致其他元素在滚动页面时出现闪烁。
规范 | 状态 | 提交 |
---|---|---|
{{SpecName('Visual Viewport','#the-visualviewport-interface','VisualViewport')}} | {{Spec2('Visual Viewport')}} | Initial definition. |
{{Compat("api.VisualViewport")}}