html圆点轨迹,html5 canvas跟随鼠标光标移动出现的圆点泡泡动画特效

js代码

//设置画布

const canvas=document.getElementById("canvas");

const ctx=canvas.getContext('2d');

canvas.width=1000;

canvas.height=400;

canvas.style.backgroundColor="#000";

//小球类

class Ball{

constructor(x,y,color){

this.x=x;

this.y=y;

this.color=color;

this.r=40;

}

//绘制小球

render(){

ctx.save();

ctx.beginPath();

ctx.arc(this.x,this.y,this.r,0,Math.PI * 2);

ctx.fillStyle=this.color;

ctx.fill();

ctx.restore();

}

}

//会移动的小球类

class MoveBall extends Ball{

constructor(x,y,color){

super(x,y,color);

//量的变化

this.dX=_.random(-5,5);

this.dY=_.random(-5,5);

this.dR=_.random(1,3);

}

upDate(){

this.x += this.dX;

this.y += this.dY;

this.r -= this.dR;

if (this.r < 0) {

this.r = 0;

}

}

}

let ballArr=[];

let colorArr=['red','green','purple','blue','orange','pink'];

canvas.addEventListener('mousemove',function (e) {

ballArr.push(new MoveBall(e.offsetX,e.offsetY,colorArr[_.random(0,colorArr.length-1)]));

})

setInterval(function(){

ctx.clearRect(0,0,canvas.width,canvas.height);

for (let i=0;i

ballArr[i].render();

ballArr[i].upDate();

}

},50);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值