canvas实现弹球的代码示例
需要时实刷新,即,帧的概念
以上就是canvas实现弹球的代码示例的详细内容,更多请关注聚合云库其它相关文章!
碰撞检测时实的坐标判断,碰撞完成以后两个速度分量为取反即可。代码
这就是俩对象,,一个依赖于另一个。。
本篇文章给大家带来的内容是关于canvas实现弹球的代码示例,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
事件是左右事件。。移动即可。效果
<!DOCTYPE html> <html lang="zh_CN"> <head> <meta charset="UTF-8"> <title>弹球</title> <script src=https://www.ym97.com/"https:/code.jquery.com/jquery-3.3.1.js"></script> </head> <body> <canvas id="canvas" width="400" height="400"></canvas> <script> // 全局canvas let canvas = document.getElementById("canvas"); let context = canvas.getContext("2d"); // 弹球对象 class Ball{ x = 100; y = 40; xSpeed = -2; ySpeed = -2; constructor(){}; getX(){ return this.x; } getY(){ return this.y; } setX(x){ this.x = x; } setY(y){ this.y = y; } getXSpeed(){ return this.xSpeed; } setXSpeed(xSpeed){ this.xSpeed = xSpeed; } getYSpeed(){ return this.ySpeed; } setYSpeed(ySpeed){ this.ySpeed = ySpeed; } // 绘制小球的方法 draw = () => { context.beginPath(); context.arc(this.x, this.y, 10, 0, Math.PI * 2, false); context.strokeRect(0, 0, 400, 400); context.fill(); }; // 移动操作 move = () => { this.x = this.x + this.xSpeed; this.y = this.y + this.ySpeed; }; // 边缘检测,碰撞检测 checkCanvas = (panel) => { // 左右 if(this.x < 5 || this.x > 400 - 5){ this.xSpeed = -this.xSpeed; } // 上方 if(this.y < 0){ this.ySpeed = -this.ySpeed; } // 下方 // 碰到挡板 if(this.y > 390 - 10){ if(this.x > panel.x && this.x < panel.xSize + panel.x){ this.ySpeed = -this.ySpeed; }else{ alert("游戏结束"); this.x = 100; this.y = 10; } } } } // 增加一个挡板对象 class Panel{ constructor(){}; // 左x x = 200; // 左y y = 390; // 长度 xSize = 50; // 宽度 ySize = 5; draw(){ context.fillRect(this.x, this.y, this.xSize, this.ySize); } } // 创建出一个小球对象 let ball = new Ball(); // 创建出挡板对象 let panel = new Panel(); // 每10秒为一帧 window.setInterval(() => { // 清空画布 context.clearRect(0, 0, 400, 400); // 画出小球 ball.draw(); // 画出挡板 panel.draw(); // 移动 ball.move(); // 进行边界判断 ball.checkCanvas(panel); },10); // 控制挡板 $("body").keydown((event) => { if(event.keyCode == 37){ panel.x = panel.x - 5; // 移出边界问题处理 if(panel.x < 0){ panel.x = 0; } } if(event.keyCode == 39){ panel.x = panel.x + 5; // 移出边界处理 if(panel.x + panel.xSize > 400){ panel.x = 400 - panel.xSize; } } }) </script> </body> </html>思路

相关热词:
本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供用于网络技术学习参考,学习中请遵循相关法律法规!
本文地址: https://v30.fanwenzhu.com/jiaob/cssm/5266.shtml
相关文章
热门TAG
win10 ecshop 主机 阿里云 解决 配置 C# C++ 解析 SQL语句 命令 Go语言 方法 CSS3 HTML5 CSS win7 MSSQL 服务器配置 IIS7.5 IIS7 IIS6 IIS CentOS 7 Linux oracle数据库 oracle phpcms discuz discuz教程最新文章
-
其中border-left决定了底部直
时间:2021-01-23
-
当你自己回头来看你写的
时间:2021-01-23
-
④格式标签 粗体:b/b 斜
时间:2021-01-23
-
我们直接看代码: !DOCTY
时间:2021-01-23
-
这里就是吐槽的IE6!) 图
时间:2021-01-23
-
假设我们的HTML代码如下:
时间:2021-01-23
-
那么使用 CSS3 新增的选择
时间:2021-01-23
-
scaleGlassRectangle.y
时间:2021-01-23
热门文章
-
可以加我的HTML5前端交流群111645711 CSS源码
时间:2021-01-15
-
就可以对子元素进行 3D 变形操作了
时间:2021-01-12
-
用css让一个容器水平垂直
时间:2021-01-12
-
而没有设置高度
时间:2021-01-19
-
canvas与html5实现视频截图成果
时间:2021-01-19
-
所以通常不需要发送
时间:2021-01-19
-
我们尝试一下更新一下HTML结构
时间:2021-01-23
-
scaleGlassRectangle.y
时间:2021-01-23
-
HTML5生拖放实例分析
时间:2021-01-12
-
在全局:root{ }伪类中定义了一个 CSS 变量
时间:2021-01-21
