问答详情
源自:2-3 海葵绘制

为什么我的是这样的

http://img.mukewang.com/59b5371200017e7108180626.jpg

http://img.mukewang.com/59b5371200012ca911910670.jpg

为什么这么高

提问者:初岓 2017-09-10 20:59

个回答

  • 慕粉4323859
    2018-12-25 18:17:47

    这串代码没有问题

  • 慕田峪6820120
    2018-01-10 15:33:20

    aneObj.prototype.draw=function(){

    ctx2.save();

    ctx2.globalAlpha=.6;

    for(var i = 0;i<this.num;i++){

    //beginPath,moveTo,lineTo,stroke,strokeStyle,lineWidth,lineCap,globalAlpha

    ctx2.beginPath();

    ctx2.moveTo(this.x[i],canHeight);

    ctx2.lineTo(this.x[i],canHeight-this.len[i]);

    ctx2.lineWidth=20;

    ctx2.lineCap='round'

    ctx2.strokeStyle="#3b154e";

    ctx2.stroke();


    }

    ctx2.restore();

    }