找传奇、传世资源到传世资源站!

消失的小球(鼠标按下随机弹出小球)

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

在页面空白出 鼠标按下,消失的小球,随机色,随机大小,可自动消失
from clipboard  Ball.prototype.move = function () {            this.x  = this.speedX;            this.y  = this.speedY;            // 边界判断             if (this.x - this.r <= 0 || this.x   this.r >= cv.offsetWidth) {                this.speedX *= -1;            }            if (this.y - this.r <= 0 || this.y   this.r >= cv.offsetHeight) {                this.speedY *= -1;            }            // 开始绘制             ctx.beginPath();            // 设置颜色             ctx.fillStyle = this.bg;            ctx.arc(this.x,this.y,this.r,0,Math.PI*2);            ctx.fill();        }

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复