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

微信小程序如何獲取屏幕寬度

100% class fun pin 大小 ims nbsp 字體 瀏覽器

微信小程序如何獲取屏幕寬度

方法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

微信小程序如何獲取屏幕寬度