W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
所有在<canvas/>
中的畫圖必須用 JavaScript 完成:
WXML:(我們在接下來的例子中如無特殊聲明都會(huì)用這個(gè) WXML 為模板,不再重復(fù))
<canvas canvas-id="myCanvas" style="border: 1px solid;"/>
JS:(我們在接下來的例子中會(huì)將 JS 放在 onLoad 中)
const ctx = wx.createCanvasContext('myCanvas')
ctx.setFillStyle('red')
ctx.fillRect(10, 10, 150, 75)
ctx.draw()
首先,我們需要?jiǎng)?chuàng)建一個(gè) Canvas 繪圖上下文 CanvasContext。
CanvasContext 是小程序內(nèi)建的一個(gè)對(duì)象,有一些繪圖的方法:
const ctx = wx.createCanvasContext('myCanvas')
接著,我們來描述要在 Canvas 中繪制什么內(nèi)容。
設(shè)置繪圖上下文的填充色為紅色:
ctx.setFillStyle('red')
用fillRect(x, y, width, height)
方法畫一個(gè)矩形,填充為剛剛設(shè)置的紅色:
ctx.fillRect(10, 10, 150, 75)
告訴<canvas/>
組件你要將剛剛的描述繪制上去:
ctx.draw()
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: