你函数参数值没对应起来 具体就是以下两行代码
drawStart(context,r/2.0,r,x,y,a); function drawStart(cxt,x,y,R,rot) {
没有一一对应啊, 你把r/2.0当成x传给了 drawStart
不知道能不能理解
上代码, 然后检查函数的形参是不是改变了.
绘制图形的点一直在(0,0), 先translate将绘制点移到(x,y),然后开始drawstar才会改变位置
好吧,自问自答,也是坑了。scale把边框也给放大了,把填充色给覆盖了...
五角星的半径在starPath里是不知道的,starPath只是画出一个标准五角星的样式,实际上你单独运行starPath是没有任何效果的,五角星的实际效果由scale(r,r)得出
知道了,谢谢大家
transform-origin 另外 你可以去w3c看看
for(var i = 0; i < 5; i++){
cxt.lineTo(Math.cos((18+i*72)/180*Math.PI*20),
-Math.sin((18+i*72)/180*Math.PI)*20 );
cxt.lineTo(Math.cos((54+i*72)/180*Math.PI)*0.5*20,
-Math.sin((54+i*72-)/180*Math.PI)*0.5*20);
最后一排多了个“-”号
感觉应该还是有影响的
rotate的旋转是你当前画布里面的元素,绘制五角星,使用for循环画出多个五角星,每次循环都使用了beginPath();
function drawStar(cxt,r,R,x,y,rot){
cxt.beginPath();
for(var i=0;i<5; i++){
cxt.lineTo(Math.cos((18+i*72-rot)/180*Math.PI)*R+x,
-Math.sin((18+i*72-rot)/180*Math.PI)*R+y);
cxt.lineTo(Math.cos((54+i*72-rot)/180*Math.PI)*r+x,
-Math.sin((54+i*72-rot)/180*Math.PI)*r+y);
}
cxt.closePath();
cxt.strokeStyle="#fd5";
cxt.lineWidth=3;
cxt.fillStyle="#fd3";
cxt.lineJoin="bevel";
cxt.fill();
cxt.stroke();
}
我发现你这里的参数传错了
怎么会,检查下代码
starPath(cxt);
cxt.translate(x,y);
cxt.rotate(rot/180*Math.PI);
应该是先图形变换,再开始画星星:
cxt.translate(x,y);
cxt.rotate(rot/180*Math.PI);
starPath(cxt);
<html>
<body>
<canvas id="canvas" style="border:1px solid #aaa;display:block;margin:50px auto;">
当前浏览器不支持Canvas,请更换浏览器后再试</canvas>
<script type="text/javascript">
window.onload=function(){
var canvas=document.getElementById("canvas");
canvas.width=800;
canvas.height=800;
var context=canvas.getContext("2d");
context.fillStyle="black";
context.fillRect(0,0,canvas.width,canvas.height);
for(var i=0;i<200;i++){
var r=Math.random()*10+2;
var x=Math.random()*canvas.width;
var y=Math.random()*canvas.height;
var a=Math.random()*360;
drawStar(context,x,y,r,a);
}
}
function drawStar(cxt,x,y,R,rot){
cxt.save();
cxt.translate(x,y);
cxt.rotate(rot/180*Math.PI);
cxt.scale(R,R);
starPath(cxt);
cxt.fillStyle="#fb3";
//cxt.strokeStyle="#fd5";
//cxt.lineWidth=3;
cxt.lineJoin="round";
cxt.fill();
//cxt.stroke();
cxt.restore();
}
function starPath(cxt){
cxt.beginPath();
for(var i=0;i<5;i++)
{
cxt.lineTo(Math.cos((18+i*72)/180*Math.PI),
-Math.sin((18+i*72)/180*Math.PI));
cxt.lineTo(Math.cos((54+i*72)/180*Math.PI)*0.5,-Math.sin((54+i*72)/180*Math.PI)*0.5);
}
cxt.closePath();
}
</script>
</body>
</html>
供参考