1. 程式人生 > >微信小程式如何獲取螢幕寬度

微信小程式如何獲取螢幕寬度

微信小程式如何獲取螢幕寬度

 

   方法1:

imageLoad: function () {
   this.setData({
     imageWidth: wx.getSystemInfoSync().windowWidth
   })
 }

   方法2:

.imgClass{
 width: 100vw;
}

CSS3引入的”vw”和”vh”基於寬度/高度相對於視窗大小 

”vw”=”view width”“vh”=”view height” 

以上我們稱為視窗單位允許我們更接近瀏覽器視窗來定義大小。

.demo {
  width: 100vw;
  font-size: 10vw; /* 寬度為視窗100%, 字型大小為視窗的10% */
}
.demo1 {
  width: 80vw;
  font-size: 8vw; /* 寬度為視窗80%, 字型大小為視窗的8% */
}
.demo2 {
  width: 50vw;
  font-size: 5vw; /* 寬度為視窗50%, 字型大小為視窗的5% */
}
.demo3 {
  width: 10vw;
  height: 50vh; /* 寬度為視窗10%, 容器高度為視窗的50% */
}

 

 

轉:https://blog.csdn.net/kerryqpw/article/details/78802023