评论

小程序使用自定义头部

浸入式头部,自定义头部

wxml部分:

<view class="custom-title" style="top: {{top}}; height: {{height}}; line-height: {{height}}"> {{title}} </view>

js部分:

data: {
    title: "",
    top: app.globalData.top + 'px',
    height: app.globalData.height + 'px'
}


// 获取状态栏相关开始
var menu = wx.getMenuButtonBoundingClientRect()
this.globalData.top = menu.top
this.globalData.height = menu.height
// 获取状态栏相关结束


最后一次编辑于  2020-08-05  
点赞 0
收藏
评论

1 个评论

  • TNT
    TNT
    2020-08-05

    2020-08-05
    赞同
    回复
登录 后发表内容