1. 程式人生 > >小程式自定義導航欄

小程式自定義導航欄

將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