微信小程序获取屏幕高度宽度
微信小程序获取屏幕高度方法一:
onLoad:function(){
this.setData({
height:wx.getSystemInfoSync().windowHeight,
width:wx.getSystemInfoSync().windowWidth
})
}
微信小程序获取屏幕高度方法二:
.index{
height:100vh;
width:100vw;
}
#CSS3引入的"vw"和"vh"基于宽度/高度相对于窗口大小
#"vw"="viewwidth""vh"="viewheight"
微信小程序获取屏幕高度 小程序屏幕高度怎么获取
微信小程序获取屏幕高度方法三:
letthat=this;
//获取系统信息
wx.getSystemInfo({
success:function(res){
//获取可使用窗口宽度
letclientHeight=res.windowHeight;
//获取可使用窗口高度
letclientWidth=res.windowWidth;
//算出比例
letratio=750/clientWidth;
//算出高度(单位rpx)
letheight=clientHeight*ratio;
//设置高度
that.setData({
height:height
});
}
});
方法四:获取微信小程序内元素高度
constquery=wx.createSelectorQuery()//定义query
query.select('#txt_medium').boundingClientRect()//获取元素参数
query.exec((res)=>{
console.log(res)//可以得到元素高度、距离顶部的top值、宽度等,单位为px
})
方法五:获取微信小程序屏幕高度和宽度,单位:px
height:wx.getSystemInfoSync().windowHeight,
width:wx.getSystemInfoSync().windowWidth
如果您的问题还未解决可以联系站长付费协助。
有问题可以加入技术QQ群一起交流学习
本站vip会员 请加入无忧模板网 VIP群(50604020) PS:加入时备注用户名或昵称
普通注册会员或访客 请加入无忧模板网 技术交流群(50604130)
客服微信号:15898888535
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若内容侵犯了原著者的合法权益,可联系站长删除。