微信小程序如何获取屏幕高度和宽度

方法一:

 

onLoad: function () {
   this.setData({
     height: wx.getSystemInfoSync().windowHeight,
     width: wx.getSystemInfoSync().windowWidth
   })
 }

方法二:

.index{
   height: 100vh;
   width: 100vw;
}
# CSS3引入的"vw"和"vh"基于宽度/高度相对于窗口大小 
# "vw" = "view width"  "vh" = "view height"

 

转自博客:https://www.jianshu.com/p/cfc7c63e63a7

posted @ 2020-06-30 16:18  子枫i  阅读(10039)  评论(0编辑  收藏  举报