码迷,mamicode.com
首页 > 微信 > 详细

微信小程序适配iphoneX

时间:2020-02-17 16:19:04      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:lda   success   this   pre   UNC   res   com   微信   code   

在小程序开发中,涉及到适配iphonex的情况主要就是在页面的最下出现button的情况,对于这个的解决思路就是:

1.获取设备型号:

// 在app.js中判断是否是哪种设备
globalData: { 
  isIphoneX: false, 
  userInfo: null 
}, 
onShow:function(){ 
  let  that = this; 
  wx.getSystemInfo({ 
    success:  res=>{ 
      // console.log(‘手机信息res‘+res.model) 
      let modelmes = res.model; 
      if (modelmes.search(iPhone X) != -1) { 
        that.globalData.isIphoneX = true 
      } 
    } 
  }) 
},

2.根据不同的设备,设置不同的css样式,另外在html布局的时候button放进别的容器标签中例如:

xx.wxml

<view class=contentView style=padding-bottom:{{btuBottom}}>
       <button class=but>Button </button>
</view>
xx.js

data: {
  btuBottom:"";
  },
//在这里只需要判断是不是iphonex,然后设置下padding-bottom:即可
  onLoad: function (options) {
    let isPhone = app.globalData.isIphoneX;
    if(isPhone){
      this.setData({
        btuBottom:"68rpx",
      })
    }
}


转载:https://www.cnblogs.com/mica/p/11162384.html

微信小程序适配iphoneX

标签:lda   success   this   pre   UNC   res   com   微信   code   

原文地址:https://www.cnblogs.com/liubingyjui/p/12321833.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!