小程序自定义标题和胶囊横对齐
2021/10/20 11:10:06
本文主要是介绍小程序自定义标题和胶囊横对齐,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
app.js
App({ onLaunch: function () { let _that=this; // 获取手机系统信息 wx.getSystemInfo({ success: res => { //导航高度 // this.globalData.navHeight = res.statusBarHeight + 44; _that.globalData.statusBarHeight=res.statusBarHeight; }, fail(err) { console.log(err); } }); } }); }) }, globalData: { statusBarHeight: 0, toBar: 44 } })
文件夹下的文件
js
data: { statusBarHeight: 20, toBarHeight: 44 }, /** * 生命周期函数--监听页面加载 */ onl oad: function (options) { this.setData({ statusBarHeight: app.globalData.statusBarHeight, toBarHeight: app.globalData.toBar }) },
wxml
<view class="header"> <view class="title" style="top: {{statusBarHeight}}px;height: {{toBarHeight}}px;line-height: {{toBarHeight}}px;">派单</view> <image src="{{imgUrl}}/tms/homePage-bg.png" class="user_img" /> </view>
wxss
.header { position: relative; position: sticky; top: 0; z-index: 1; overflow: hidden; } .header .title { position: absolute; /* margin-top: 64rpx; */ left: 50%; /* top: 20px; */ transform: translate(-50%,0); color: white; font-size: 32rpx; }
效果:
这篇关于小程序自定义标题和胶囊横对齐的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-20微信小程序开发入门指南
- 2024-12-20小程序 createCameraContext() 怎么实现识别条形码功能?-icode9专业技术文章分享
- 2024-11-22微信小程序的接口信息py可以抓到吗?-icode9专业技术文章分享
- 2024-11-22怎样解析出微信小程序二维码带的参数?-icode9专业技术文章分享
- 2024-11-22微信小程序二维码怎样解析成链接?-icode9专业技术文章分享
- 2024-11-22微信小程序接口地址的域名需要怎么设置?-icode9专业技术文章分享
- 2024-11-22微信小程序的业务域名有什么作用-icode9专业技术文章分享
- 2024-11-22微信小程序 image有类似html5的onload吗?-icode9专业技术文章分享
- 2024-11-22微信小程序中怎么实现文本内容超出行数后显示省略号?-icode9专业技术文章分享
- 2024-11-22微信小程序怎么实现分享样式定制和图片定制功能?-icode9专业技术文章分享