微信小程序canvas 使用案例(一)

avatar
作者
猴君
阅读量:0

一、cavans 对象获取、上线文创建

1.wxml

 <!-- canvas.wxml -->  <canvas type="2d" id="myCanvas"></canvas>

2.js

   /**    * 生命周期函数--监听页面加载    */   onLoad(options) {       const query = wx.createSelectorQuery()     query.select('#myCanvas')       .fields({         node: true,         size: true       })       .exec((res) => {         const canvas = res[0].node         const ctx = canvas.getContext('2d')         //分辨率处理         const dpr = wx.getSystemInfoSync().pixelRatio         canvas.width = res[0].width * dpr         canvas.height = res[0].height * dpr         ctx.scale(dpr, dpr)         ctx.fillRect(0, 0, 100, 100);       })    }, 

3.css 代码忽略

结果:

更多:

微信小程序数组绑定使用案例(二)

微信小程序数组绑定使用案例(一)

input组件 type为nickname pc端获取不到这个绑定的值?

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!