//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();
}
//}
添加回答
举报
0/150
提交
取消