微信小程序--自定义navBar
2022/5/24 1:22:41
本文主要是介绍微信小程序--自定义navBar,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
android平台的微信小程序NavigationBarTItle题目居左,苹果的居中,微信官方文档没有navBar的相关设置,只能自行定义。
第一步:在page.json页面的首页路由中加入"navigationStyle": "custom",取消默认的原生导航栏
第二步:新建navBar组件
具体代码:
index.vue
<template> <view class="navbar custom-class" :style="{height:globalData.navHeight + 'px'}"> <view class="navbar-action-wrap navbar-action-group row item-center" :style="{top:globalData.navTop + 'px'}" style="background-color:rgba(255,255,255,0.6)"> <view class="navbar-action_item" @click="_navBack">返回</view> <view class="navbar-action_item last" @click="_toIndex">首页</view> </view> <view class='navbar-title' :style="{top:globalData.navTop + 'px'}"> {{pageName}} </view> </view> </template> <script> export default{ props: { pageName:String, showNav:{ type:Boolean, value:true }, showHome: { type: Boolean, value: true } }, data(){ return { navTop: '', num:20, //字体大小 fontColor:'red' ,//字体颜色 globalData:{ navHeight: null, navTop: null, windowHeight: null } } }, onShow() { }, methods: { // 获取高度 getHeight(){ let menuButtonObject = wx.getMenuButtonBoundingClientRect(); // 获取胶囊按钮的信息 uni.getSystemInfo({ success: res => { let statusBarHeight = res.statusBarHeight, // 设备高度(电量,时间...显示的位置) navTop = menuButtonObject.top,//胶囊按钮与顶部的距离 navHeight = statusBarHeight + menuButtonObject.height + (menuButtonObject.top - statusBarHeight)*2;//导航高度 this.globalData.navHeight = navHeight; this.globalData.navTop = navTop; this.globalData.windowHeight = res.windowHeight; }, fail(err) { console.log(err); } }) }, //回退 _navBack: function () { uni.navigateBack({ delta: 1 }) }, //回主页 _toIndex: function () { uni.switchTab({ url: '/pages/index/index' }) }, } } </script> <style> @import url("./css/navbar.css"); </style>
navbar.css
.navbar { width: 100%; overflow: hidden; position: relative; top: 0; left: 0; z-index: 10; flex-shrink: 0; } .navbar-title { width: 100%; box-sizing: border-box; padding-left: 115px; padding-right: 115px; height: 32px; line-height: 32px; text-align: center; position: absolute; left: 0; z-index: 10; color: #333; font-size: 16px; font-weight: bold; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } .navbar-action-wrap { display: -webkit-flex; display: flex; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; position: absolute; left: 10px; z-index: 11; line-height: 1; padding-top: 4px; padding-bottom: 4px; } .navbar-action-group { border: 1px solid #f0f0f0; border-radius: 20px; overflow: hidden; } .navbar-action_item { width: 20rpx; height: 20rpx; padding: 3px 0; color: #333; } .navbar-action-group .navbar-action_item { border-right: 1px solid #f0f0f0; padding: 3px 14px; } .navbar-action-group .last { border-right: none; }
相关计算:
小程序可以通过 wx.getMenuButtonBoundingClientRect() 获取胶囊按钮的信息 和 wx.getSystemInfo() 获取设备信息。
通过这些信息我们可以计算出上面说的3个值:
1. 整个导航栏高度 = statausBarHeight + height + (top-statausBarHeight )*2;
2. 胶囊按钮与顶部的距离 = top;
3.胶囊按钮与右侧的距离 = windowWidth - right。
关于第1步中,为啥要乘以2的原因,请看灵魂画手般的我画的图纸:
第三步:引入组件
在建立好的首页页面引入navbar组件
<template> <view class="container"> <navbar :pageName="nbTitle" ref="navBarRef"></navbar> </view> </template> <script> import navbar from '../../components/navbar/index.vue' export default { components: { navbar }, data() { return { nbTitle: '首页' } }, onShow() { this.$refs.navBarRef.getHeight() }, }
展示:
例如:
参考:https://www.cnblogs.com/sese/p/9761713.html
这篇关于微信小程序--自定义navBar的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-31微信小程序怎么实现关注公众号功能-icode9专业技术文章分享
- 2024-10-30微信小程序cover-view,支持bindtap吗-icode9专业技术文章分享
- 2024-10-30微信小程序的cover-image支持bindtap吗-icode9专业技术文章分享
- 2024-10-30微信小程序web-view怎么设置高度?-icode9专业技术文章分享
- 2024-10-30微信小程序中 onLoad和onready哪个先加载-icode9专业技术文章分享
- 2024-10-29小程序 wx.getStorageSync('token')如何清除-icode9专业技术文章分享
- 2024-10-29小程序防止冒泡e.stopPropagation()是什么-icode9专业技术文章分享
- 2024-10-29小程序的点击事件页面如何写-icode9专业技术文章分享
- 2024-10-25微信小程序如何使用echarts的折线图-icode9专业技术文章分享
- 2024-10-21微信小程序 如何获取页面路径-icode9专业技术文章分享