javascript canvas检测小球碰撞


Posted in Javascript onApril 17, 2020

本文实例为大家分享了javascript canvas实现检测小球碰撞的具体代码,供大家参考,具体内容如下

定义一个canvas标签

<div class="cnavasInfo">
 <canvas
  id="canvas"
  width="800"
  height="500"
 ></canvas>
</div>

函数以及相关的逻辑处理

export default {
 data() {
  return {
   canvas: null,
   ctx: null,
   arcObj: {}
  };
 },
 mounted() {
  this.canvas = document.getElementById("canvas");
  this.ctx = this.canvas.getContext("2d");
  // this.move(); // 矩形的边缘碰撞函数
  // this.moveArc(); // 绘制碰撞圆形,对象形式
  this.moveRect()
 },
 methods: {
  move() {
   let x = 0;
   let y = 0;
   let width = 100;
   let height = 100;
   let speedX = 2;
   let speedY = 2;
   let ctx = this.ctx;
   ctx.fillStyle = "red";
   ctx.fillRect(x, y, width, height);
   setInterval(() => {
    ctx.clearRect(x, y, this.canvas.width, this.canvas.height);
    x += speedX;
    if (x > this.canvas.width - width) {
     speedX *= -1;
    } else if (x < 0) {
     speedX *= -1;
    }
    y += speedY;
    if (y > this.canvas.height - height) {
     speedY *= -1;
    } else if (y < 0) {
     speedY *= -1;
    }
    ctx.fillRect(x, y, width, height);
   }, 10);
   // this.requestmove(x,y,width,height,ctx,speedX,speedY); // 请求帧的动画过程
  },
  requestmove(x, y, width, height, ctx, speedX, speedY) {
   ctx.clearRect(x, y, this.canvas.width, this.canvas.height);
   x += speedX;
   if (x > this.canvas.width - width) {
    speedX *= -1;
   } else if (x < 0) {
    speedX *= -1;
   }
   y += speedY;
   if (y > this.canvas.height - height) {
    speedY *= -1;
   } else if (y < 0) {
    speedY *= -1;
   }
   ctx.fillRect(x, y, width, height);
   window.requestAnimationFrame(
    this.requestmove(x, y, width, height, ctx, speedX, speedY)
   );
  },
  moveArc(x, y, r, speedX, speedY) {
   this.x = x;
   this.y = y;
   this.r = r;
   this.speedX = speedX;
   this.speedY = speedY;
   this.moveUpdata = function() {
    this.x += this.speedX;
    if (this.x > this.canvas.width - this.r) {
     this.speedX *= -1;
    } else if (this.x < 0) {
     this.speedX *= -1;
    }
    this.y += this.speedY;
    if (this.y > this.canvas.height - this.r) {
     this.speedY *= -1;
    } else if (this.y < 0) {
     this.speedY *= -1;
    }
   };
  },
  moveRect(){
   // 面向对象编程
   function Rect(x,y,width,height,color,speedX,speedY,ctx,canvas) {
    this.x = x;
    this.y = y;
    this.width = width;
    this.height = height;
    this.color = color
    this.speedX = speedX
    this.speedY = speedY
    this.ctxRect = ctx
    this.canvas = canvas
   }
   Rect.prototype.draw = function() {
    this.ctxRect.beginPath();
    this.ctxRect.fillStyle = this.color
    this.ctxRect.fillRect(this.x,this.y,this.width,this.height)
    this.ctxRect.closePath();
   }
   Rect.prototype.move = function() {
    this.x += this.speedX
    if(this.x > this.canvas.width - this.width){
     this.speedX *= -1
    } else if(this.x < 0){
     this.speedX *= -1
    }
    this.y += this.speedY
    if(this.y > this.canvas.height - this.height){
     this.speedY *= -1
    } else if(this.y < 0){
     this.speedY *= -1
    }
   }
   let rect1 = new Rect(0,100,100,100,'red',2,2,this.ctx,this.canvas)
   let rect2 = new Rect(300,100,100,100,'blue',-2,-2,this.ctx,this.canvas)
   // rect1.draw();
   // rect2.draw()
   let animate = ()=>{
     this.ctx.clearRect(0,0,this.canvas.width,this.canvas.height)
     rect1.draw()
     rect1.move()
     rect2.draw()
     rect2.move()
    let rect1Min = rect1.x;
    let rect1Max = rect1.x + rect1.width
    let rect2Min = rect2.x
    let rect2Max = rect2.x + rect2.width
    let min = Math.max(rect1Min,rect2Min)
    let max = Math.min(rect1Max,rect2Max)
    if(min < max){
     rect1.speedX *= -1;
     rect1.speedY *= 1;
     rect2.speedX *= -1
     rect2.speedY *= 1
    }
    window.requestAnimationFrame(animate)
   } 
   animate()
  }
 }
};

样式控制

#canvas {
 border: 1px solid black;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
做网页的一些技巧
Feb 01 Javascript
prototype 学习笔记整理
Jul 17 Javascript
Extjs中DisplayField的日期或者数字格式化扩展
Sep 03 Javascript
JavaScript传递变量: 值传递?引用传递?
Feb 22 Javascript
使用按钮控制以何种方式打开新窗口的属性介绍
Dec 17 Javascript
javascript中返回顶部按钮的实现
May 05 Javascript
js+css实现有立体感的按钮式文字竖排菜单效果
Sep 01 Javascript
javascript 中select框触发事件过程的分析
Aug 01 Javascript
深入理解Vue 单向数据流的原理
Nov 09 Javascript
微信小程序批量上传图片到七牛(推荐)
Dec 19 Javascript
Electron实现应用打包、自动升级过程解析
Jul 07 Javascript
JS如何在不同平台实现多语言方式
Jul 16 Javascript
Vue实现浏览器打印功能的代码
Apr 17 #Javascript
基于JavaScript获取url参数2种方法
Apr 17 #Javascript
VSCode写vue项目一键生成.vue模版,修改定义其他模板的方法
Apr 17 #Javascript
vue fetch中的.then()的正确使用方法
Apr 17 #Javascript
如何基于filter实现网站整体变灰功能
Apr 17 #Javascript
javascript设计模式 ? 解释器模式原理与用法实例分析
Apr 17 #Javascript
javascript设计模式 ? 迭代器模式原理与用法实例分析
Apr 17 #Javascript
You might like
一个SQL管理员的web接口
2006/10/09 PHP
基于php数组中的索引数组和关联数组详解
2018/03/12 PHP
PHP判断一个变量是否为整数、正整数的方法示例
2019/09/11 PHP
Laravel 框架路由原理与路由访问实例分析
2020/04/14 PHP
基于jquery的横向滚动条(滑动条)
2011/02/24 Javascript
div拖拽插件——JQ.MoveBox.js(自制JQ插件)
2013/05/17 Javascript
基于Unit PNG Fix.js有时候在ie6下不正常的解决办法
2013/06/26 Javascript
判断js对象是否拥有某一个属性的js代码
2013/08/16 Javascript
浅析Node.js中的内存泄漏问题
2015/06/23 Javascript
javascript给span标签赋值的方法
2015/11/26 Javascript
js实现div模拟模态对话框展现URL内容
2016/05/27 Javascript
jQuery ui autocomplete选择列表被Bootstrap模态窗遮挡的完美解决方法
2016/09/23 Javascript
详解js中call与apply关键字的作用
2016/11/21 Javascript
js分页之前端代码实现和请求处理
2017/08/04 Javascript
Angularjs 手写日历的实现代码(不用插件)
2017/10/18 Javascript
详解JSONObject和JSONArray区别及基本用法
2017/10/25 Javascript
JavaScript实现一个带AI的井字棋游戏源码
2018/05/21 Javascript
JS实现的Object数组去重功能示例【数组成员为Object对象】
2019/02/01 Javascript
vue 遮罩层阻止默认滚动事件操作
2020/07/28 Javascript
vue打包npm run build时候界面报错的解决
2020/08/13 Javascript
详解JavaScript作用域、作用域链和闭包的用法
2020/09/03 Javascript
vue v-on:click传递动态参数的步骤
2020/09/11 Javascript
Vue+element+cookie记住密码功能的简单实现方法
2020/09/20 Javascript
Vue+Element-U实现分页显示效果
2020/11/15 Javascript
jQuery实现可以扩展的日历
2020/12/01 jQuery
Python实现TCP协议下的端口映射功能的脚本程序示例
2016/06/14 Python
详解python的几种标准输出重定向方式
2016/08/15 Python
python实现超市商品销售管理系统
2019/10/25 Python
PyTorch实现更新部分网络,其他不更新
2019/12/31 Python
Python反爬虫伪装浏览器进行爬虫
2020/02/28 Python
HTML5标签小集
2011/08/02 HTML / CSS
HTML5通用接口详解
2016/06/12 HTML / CSS
SCDKey德国:全球领先的数字游戏市场
2019/04/09 全球购物
售后服务承诺书怎么写
2014/05/21 职场文书
计划生育目标责任书
2015/05/09 职场文书
mysql通过group by分组取最大时间对应数据的两种有效方法
2022/09/23 MySQL