简体中文
uni-app x 4.0起 提供内置 CSS 变量。之前版本如有获取状态栏高度等需求可使用uni.getWindowInfo()方式获取。
CSS 变量 | 描述 | App | web |
---|---|---|---|
--status-bar-height | 系统状态栏高度 | 系统状态栏高度 | 0 |
--window-top | 内容区域距离顶部的距离 | 0 | NavigationBar 的高度 |
--window-bottom | 内容区域距离底部的距离 | 0 | TabBar 的高度 |
注意
"navigationStyle":"custom"
取消原生导航栏后,由于窗体为沉浸式,占据了状态栏位置。此时可以使用一个高度为 var(--status-bar-height)
的 view 放在页面顶部,避免页面内容出现在状态栏。--window-bottom
,不管在哪个端,都是固定在 tabBar 上方。快速书写 css 变量的方法是:在 css 中敲 hei
,在候选助手中即可看到 3 个 css 变量。
<template>
<view>
<view class="status_bar">
<!-- 这里是状态栏 -->
</view>
<view>状态栏下的文字</view>
</view>
</template>
<style>
.status_bar {
height: var(--status-bar-height);
width: 100%;
}
</style>
<template>
<view>
<view class="toTop">
<!-- 这里可以放一个向上箭头,它距离底部tabBar上浮10px-->
</view>
</view>
</template>
<style>
.toTop {
bottom: calc(var(--window-bottom) + 10px);
}
</style>