商城系統(tǒng) 注冊(cè)

微信小程序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)

微信小程序canvas尺寸的設(shè)置方法教程

 

示例代碼:


  1. wx.getSystemInfo({
  2. success: function(res) {
  3. console.log(res.model)
  4. console.log(res.pixelRatio)
  5. console.log(res.windowWidth)
  6. console.log(res.windowHeight)
  7. console.log(res.language)
  8. console.log(res.version)
  9. console.log(res.platform)
  10. }
  11. })

二.計(jì)算示例

獲取當(dāng)前窗口寬、高以動(dòng)態(tài)換算需要的canvas尺寸


  1. wx.getSystemInfo({
  2. //獲取系統(tǒng)信息成功,將系統(tǒng)窗口的寬高賦給頁面的寬高
  3. success: function (res) {
  4. that.width = res.windowWidth
  5. that.height = res.windowHeight
  6. that.radius = 105 / 602 * that.height
  7. }
  8. })
HiShop小程序工具提供多類型商城/門店小程序制作,可視化編輯 1秒生成5步上線。通過拖拽、拼接模塊布局小程序商城頁面,所看即所得,只需要美工就能做出精美商城。

更多小程序資訊,盡在:m.descansotropical.com/xiaocx/

電話咨詢 預(yù)約演示 0元開店