123456789101112131415161718192021222324252627282930313233343536 |
- Component({
-
- properties: {
- },
-
- data: {
- },
-
- methods: {
- poster: function () {
- const ctx = wx.createCanvasContext('myCanvas');
- ctx.setFontSize(20)
- ctx.fillText('喔喔', 93, 49)
- ctx.setFillStyle('#FF4400')
- ctx.fillText('郎朗读书声是世上最美的声音', 92, 76)
- ctx.save()
- ctx.arc(48, 53, 37, 0, 2 * Math.PI, false)
- ctx.clip();
- ctx.drawImage('../../../static/groupImg/Bitmap1.png', 10, 10, 100, 100);
- ctx.restore();
- ctx.drawImage('../../../static/groupImg/Bitmap1.png', 9, 103, 352, 145);
- ctx.draw()
- }
- }
- })
|