微信小程序canvas尺寸的設(shè)置方法教程
2020-09-27|HiShop
導(dǎo)讀:微信小程序尺寸設(shè)置可使用rpx來標(biāo)記尺寸,類同rem可在微信小程序中自適應(yīng)兼容換算不同的機(jī)型尺寸。 但在小程序canvas中,尺寸換算會(huì)無效,因此需要自適應(yīng)計(jì)算....
微信小程序尺寸設(shè)置可使用rpx來標(biāo)記尺寸,類同rem可在微信小程序中自適應(yīng)兼容換算不同的機(jī)型尺寸。
但在小程序canvas中,尺寸換算會(huì)無效(由于繪畫的滯后),因此需要自適應(yīng)計(jì)算canvas尺寸。
一.解決方案
使用小程序提供的getSystemInfo可以獲取當(dāng)前設(shè)備的系統(tǒng)信息,通過獲取當(dāng)前的設(shè)備尺寸,來換算所需要設(shè)置的canvas尺寸,從而使得canvas繪圖可以適用于所有設(shè)備。
wx.getSystemInfo(OBJECT)
示例代碼:
-
wx.getSystemInfo({
-
success: function(res) {
-
console.log(res.model)
-
console.log(res.pixelRatio)
-
console.log(res.windowWidth)
-
console.log(res.windowHeight)
-
console.log(res.language)
-
console.log(res.version)
-
console.log(res.platform)
-
}
-
})
二.計(jì)算示例
獲取當(dāng)前窗口寬、高以動(dòng)態(tài)換算需要的canvas尺寸
-
wx.getSystemInfo({
-
//獲取系統(tǒng)信息成功,將系統(tǒng)窗口的寬高賦給頁面的寬高
-
success: function (res) {
-
that.width = res.windowWidth
-
that.height = res.windowHeight
-
that.radius = 105 / 602 * that.height
-
}
-
})
HiShop小程序工具提供多類型商城/門店小程序制作,可視化編輯 1秒生成5步上線。通過拖拽、拼接模塊布局小程序商城頁面,所看即所得,只需要美工就能做出精美商城。
更多小程序資訊,盡在:m.descansotropical.com/xiaocx/
您可能感興趣:小程序