结果安卓机上下两层颜色是反的,代码
ctx.beginPath();
ctx.arc(countwidth/2, countwidth/2, countwidth/2-15, 0, 2 * Math.PI,false);
ctx.setLineWidth(6);
ctx.setStrokeStyle(colorarr[0]);
ctx.stroke();
// Draw arc
ctx.beginPath();
ctx.arc(countwidth / 2, countwidth / 2, countwidth / 2 - 15, 0.5 * Math.PI,0.1* Math.PI,false);
ctx.setLineWidth(6);
ctx.setStrokeStyle(colorarr[1]);
ctx.stroke();
ctx.beginPath()
ctx.arc(countwidth/2,countwidth - 15, 6, 0, 2 * Math.PI)
ctx.setFillStyle(‘red’)
ctx.fill();
ctx.draw()