html5绘制草,html5 canvas海底水草动画

html5 canvas海底水草动画

代码片段:

Stem.prototype.draw = function(ctx) {

var len, ctrlPoint, point;

len = this.points.length - 1;

ctrlPoint = {x: 0, y: 0};

ctx.save();

ctx.strokeStyle = this.color;

ctx.beginPath();

ctx.moveTo(this.points[this.points.length - 1].x, this.points[this.points.length - 1].y);

for (var i = len; i >= 1; i--) {

point = this.points[i];

ctrlPoint.x = (point.x + this.points[i - 1].x) / 2;

ctrlPoint.y = (point.y + this.points[i - 1].y) / 2;

ctx.quadraticCurveTo(point.x, point.y, ctrlPoint.x, ctrlPoint.y);

ctx.lineWidth = i * 1.1;

ctx.stroke();

ctx.fillStyle = 'red';

}

ctx.restore();

}

申明:本站所有资源都是转载各大下载站,或由网友投稿发布,请自行检测软件的完整性,如有侵权请联系我们删除下架,联系方式:admin@php.cn

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值