900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > 微信小程序标题title——自定义

微信小程序标题title——自定义

时间:2019-04-29 13:20:32

相关推荐

微信小程序标题title——自定义

1.自定义单个页面的标题

1)在相应文件夹的json文件中加入

"navigationStyle": "custom"

2)在wxml文件中就可以自定义标题了

<view class="topbar" style="padding-top:{{statusBarHeight}}px"><view class="title"> <van-nav-bartitle="疫苗选择"left-text="" left-arrowbind:click-left="onClickLeft"custom-class="navBar"/></view>//这里我用的vant weapp组件,也可以直接用view自编

3)在wxss文件中改样式

.topbar {background-color: #5884F5;}.title{background-color: #5884F5;}//以下为更改组件自带样式的代码.van-nav-bar{background-color: #5884F5!important;padding-top: 0px !important;}.van-nav-bar__title {color: white !important;}.van-nav-bar .van-icon {color: white !important;}

4)最终页面

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。