11

如何在 Android 的 Chrome 浏览器中获取 JavaScript 中地址栏的高度(左图中用红色矩形标记)?我需要知道它在向下滚动时会消失,我需要对此做出反应,因为那时视口高度不同。

在此处输入图像描述

我已经想出的一种解决方案:

  1. 获取初始状态下的视口高度: var height = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);

  2. 地址栏消失时获取视口高度

  3. 计算两个值之间的差异

问题是你必须处于第二种状态才能知道这一点。

4

5 回答 5

13

因为100vh will be larger than the visible height when the URL bar is shown. 据此。_

您可以通过创建一个高度为 100vh 的 0-width 元素来计算 URL 栏的高度。

<div id="control-height"></div>
#control-height {
    height: 100vh;
    width: 0;
    position: absolute;
}

然后使用 javascriptwindow.innerHeight与此元素的高度进行比较。

const actualHeight = window.innerHeight;
const elementHeight = document.getElementById('control-height').clientHeight;

const barHeight = elementHeight - actualHeight;
于 2020-11-14T17:45:42.757 回答
6

您正在寻找的是url bar resizing。由于 Android 的 chrome v56,David Bokan 建议在移动设备上使用vh 单元。那篇文章中有一个演示,单击链接以获取更多信息以及如何在移动设备上使用它。

当用户向下滚动页面时,会引发window.resize 事件。您可以通过使用事件侦听器捕获此事件来更新您的页面。

更多信息:移动 chrome 在滚动时触发调整大小事件

于 2018-06-22T15:15:49.173 回答
4

今天遇到了同样的问题,事实证明没有简单的方法可以直接计算出 url 栏的高度。据我所知,javascript 中没有一个可直接访问的变量可以告诉您“100vh”的实际大小。

在移动浏览器上,100vh 可能包括也可能不包括 url 栏的高度,如果我们想在加载期间将 div 的大小调整为浏览器可见内容区域的确切高度,这让我们陷入了一个棘手的境地。

我想出了一个解决方法,尽管它对我来说非常好用,这就是我所做的:

  1. 在您的 html 根元素上添加一个大小为 100vh 的虚拟属性。就我而言,我使用了对我有用的“透视”属性
  2. 然后您可以使用以下代码获取地址栏大小:

    var addressBarSize = parseFloat(getComputedStyle(document.documentElement).perspective) - document.documentElement.clientHeight
    
于 2019-02-20T23:21:32.597 回答
3

对我来说最好的方法是有这样的东西:

$(document).ready(function(){   

var viewportHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
var viewportWidth = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
var isPortrait = viewportHeight > viewportWidth;

$( window ).resize(onresize);

function onresize() {
        var newViewportHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
        var newViewportWidth = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
        var hasOrientationChanged = (newViewportHeight > newViewportWidth) != isPortrait;
        var addressbarHeight = 130;

        if (!hasOrientationChanged && (newViewportHeight != viewportHeight)) {
            addressbarHeight = Math.abs(newViewportHeight - viewportHeight);
            if (newViewportHeight < viewportHeight) {
                // Android Chrome address bar has appeared
            } else {
                // Android Chrome address bar has disappeared
            }
        } else if(hasOrientationChanged) {
            // Orientation change
        }

        viewportHeight = newViewportHeight;
        viewportWidth = newViewportWidth;
        isPortrait = viewportHeight > viewportWidth;
}
});
于 2018-07-04T15:07:08.463 回答
3

我有一个包含动态内容的容器,它必须始终至少具有视口的全高(如果内容不适合屏幕,则可以滚动)。

因此,如果您需要固定高度,只需在我的解决方案中将“min-height”替换为“height”即可。

我就是这样处理的。

// calculate min-height on init
$(".content-container").css("min-height", `${window.innerHeight}px`);

// recalculate the min-height everytime the bar appears or disappears
$(window).resize(() => {
    $(".content-container").css("min-height", `${window.innerHeight}px`);
});

它适用于 android 的地址栏和 safari 的栏(在 safari mobile 中也可以有顶部和底部栏)。

然后为了使过渡平滑,您可以应用 css 规则:

.content-container{
    transition: min-height 500ms ease;
}
于 2019-02-27T14:14:29.850 回答