摘要: 小程序canvas绘制纯色圆角区域: //方法: roundRectPath:function(ctx, x, y, w, h, r) { ctx.beginPath(); ctx.moveTo(x + r, y); ctx.arcTo(x + w, y, x + w, y + h, r); ctx 阅读全文
posted @ 2020-10-29 17:52 夏目的三三 阅读(159) 评论(0) 推荐(0) 编辑