小程序自定义导航栏

将app.json里的navigationStyle设置为navigationStyle:custom。可以在.wxss里通过margin和padding来自定义导航栏。

例如在.wxml里写
<view class="nav">我是汽车维修技师</view>
在.wxss里设置样式
.nav{height:90rpx;line-height: 90rpx;margin-top:60rpx;padding-left:20rpx;font-size:28rpx;font-weight:400}
学习链接:
https://developers.weixin.qq.com/miniprogram/dev/framework/config.html#全局配置
https://www.caiyunyi.com/news/blog/25.html

小程序自定义导航栏

上一篇:返回一个二维整数数组中最大子数组的和的小程序


下一篇:微信程序开发系列教程(二)使用JavaScript给微信用户发送消息