小程序中指定页面如何自定义导航栏?
作者:互联网
一、指定页面的json文件文件中 设置自定义:
{
"navigationStyle": "custom"
}
二、指定页面的wxml文件中自定义导航内容信息:
<view class="box">
<!-- 状态栏高度 -->
<view style="height: {{statusBarHeight}}px"></view>
<!-- 标题栏高度 -->
<view class='nav' style="height: {{toBarHeight}}px;">
<image src="../../images/retrun_1.png" bindtap="backClick"></image>
<text style="height: {{toBarHeight}}px;line-height: {{toBarHeight}}px">{{cusTitle}}
</text>
</view>
</view>
// 样式自定义
// backClick 自定义顶部返回事件
三、指定页面的wxss中自定义样式:
.box {
background: #FFF;
font-weight: 500;
width: 100%;
position: fixed;
top: 0;
right: 0;
z-index: 999;
}
.nav {
width: 100%;
font-size: 30rpx;
}
.nav image {
width: 36rpx;
height: 36rpx;
margin-top: 26rpx;
float: left;
margin-left: 15rpx;
}
.nav text {
float: left;
margin-left: 260rpx;
}
四、设置导航高度:
data: {
cusTitle: '导航标题',
statusBarHeight: 0, //状态栏初始高度
toBarHeight: 44, //标题栏高度:安卓:48px,iOS:44px;单位必需跟胶囊按钮一致,用px
}
onLoad: function (options) {
// 手机状态栏的高度
let sysinfo = wx.getSystemInfoSync();
this.setData({
statusBarHeight: sysinfo.statusBarHeight
})
}
标签:toBarHeight,自定义,px,statusBarHeight,页面,导航,left 来源: https://blog.csdn.net/m0_37816134/article/details/117435444