html之画布Canvas图像加注释部分后不显示,去掉后可以显示,但不成螺型,为什么?

//function draw(){
	var ctx = document.getElementById("myCanvas5").getContext("2d");	
	    ctx.translate(200,20);
	for (var i = 1; i < 80; i++){
		ctx.save();
		ctx.translate(30,30);
		ctx.scale(0.9,0.88);
		ctx.rotate(Math.PI*2);
		ctx.beginPath();
		ctx.fillStyle='red';
		ctx.globalAlpha='0.5'; //颜色深浅
		ctx.arc(0,0,50,0,Math.PI*2,true);
		ctx.font = 'bold 35px blue';
		ctx.fillText('我们来自同一个世界',30,100);
		ctx.closePath();
		ctx.fill();
	}	
// window.onload = function(){
//	draw();
	}
//}

http://img.mukewang.com/56e2fa830001474d07000300.jpg

但我会继续努力的
浏览 1879回答 0
0回答
打开App,查看更多内容
随时随地看视频慕课网APP