1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 粒子背景php html5+canvas圆形粒子移动背景动画特效

粒子背景php html5+canvas圆形粒子移动背景动画特效

时间:2021-06-20 03:38:55

相关推荐

粒子背景php html5+canvas圆形粒子移动背景动画特效

html5+canvas圆形粒子移动背景动画特效

this.update = function () {

var lastPoint = { x: _this.x, y: _this.y };

// Move points over time

_this.radians += _this.velocity;

// Drag effect

_this.lastMouse.x += (mouse.x - _this.lastMouse.x) * 0.05;

_this.lastMouse.y += (mouse.y - _this.lastMouse.y) * 0.05;

// Circular Motion

_this.distanceFromCenter.x = _this.prevDistanceFromCenter.x + Math.sin(_this.radians) * 100;

_this.distanceFromCenter.y = _this.prevDistanceFromCenter.x + Math.sin(_this.radians) * 100;

_this.x = _this.lastMouse.x + Math.cos(_this.radians) * _this.distanceFromCenter.x;

_this.y = _this.lastMouse.y + Math.sin(_this.radians) * _this.distanceFromCenter.y;

_this.draw(lastPoint);

};

申明:php中文网下载站匠心打造专业的IT资源下载站!一切资源免费,来源网络收集,请自行检测软件的完整性。交流QQ群:916808767

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。