# CanvasContext.setStrokeStyle(Color color)
设置描边颜色。
# 参数
# Color color
描边的颜色,默认颜色为 black。
# 代码示例
const ctx = qa.createCanvasContext('myCanvas')
ctx.setStrokeStyle('red')
ctx.strokeRect(10, 10, 150, 75)
ctx.draw()
1
2
3
4
2
3
4
←
→
在线客服