canvas画小球,头像,文本

/** * 画小球 */ drawArc: function(ctx, color, w, h) { ctx.beginPath(); ctx.fillStyle = color; ctx.arc(w, h, 4, 0, 2 * Math.PI, false); ctx.fill(); },
相关文章
相关标签/搜索