var c=document.getElementById("progress"); var ctx=c.getContext("2d"); //扇形 ctx.fillStyle="silver"; ctx.beginPath(); ctx.translate(100, 100); ctx.moveTo(0, 0); ctx.rotate(135*Math.PI/180); ctx.arc(0, 0, 100, 0, Math.PI * 1.5); ctx.closePath(); ctx.fill(); ctx.save(); //下扇形 ctx.fillStyle="white"; ctx.beginPath(); ctx.moveTo(0, 0); ctx.arc(0, 0, 100, 20, Math.PI * 1.5); ctx.closePath(); ctx.fill(); //内圆 ctx.rotate(-135*Math.PI/180); ctx.fillStyle='rgba(225,225,225,1)'; ctx.beginPath(); ctx.arc(0,0,80,80,Math.PI*2,true); ctx.closePath(); ctx.fill(); //文本 ctx.translate(-100, -100); ctx.moveTo(0, 0); ctx.font = "16px Courier New"; ctx.fillStyle = "gray"; ctx.fillText("32人参与投资", 50, 180); ctx.font = "48px Courier New"; ctx.fillStyle = "#ff3333"; ctx.fillText("15%", 60, 110); ctx.save()