微信公众号开发

小程序自定义标题和胶囊横对齐

本文主要是介绍小程序自定义标题和胶囊横对齐,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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;
}

效果:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

这篇关于小程序自定义标题和胶囊横对齐的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!