Toggle navigation
在线编辑器
在线代码
文本比较
jQuery下载
前端库
在线手册
登录/注册
UI
|
输入
|
媒体
|
导航
|
其他
|
网页模板
|
APP模板
|
常用代码
|
在线代码
背景
对话框和灯箱
筛选及排序
反馈
弹出层
悬停
布局
图表
加载
圆边
滚动
标签
文本链接
工具提示
网络类型
拾色器
定制和风格
日期和时间
拖和放
通用输入
自动完成
密码
投票率
搜索
选择框
快捷键
触摸
丰富的输入
上传
验证
音频和视频
幻灯片和轮播图
图片展示
图像
地图
滑块和旋转
Tabs
水平导航
垂直导航
文件树
分页
手风琴菜单
其他导航
动画效果
浏览器调整
移动
独立的部件
杂项
游戏
PROMULGATOR
yululu
河南省郑州市
关注作者
(1)
收藏此代码
(105)
← canvas多个小球运动
→ div模拟的input输入框
相关代码
js
计时器
js
进度条
js
实现打印
纯
js
倒计时
原生
js
分页
js
计算器
js
轮播图
Html
Css
Js
canvas { border:1px solid black; }
var myCanvas = document.getElementById("cont"); var txt = myCanvas.getContext("2d") var cw = myCanvas.width; var ch = myCanvas.height; var Rect = function(x, y, rwidth, rheight, color, speedx, speedy) { this.x = x; this.y = y; this.rwidth = rwidth; this.rheight = rheight; this.color = color; this.speedx = speedx; //x方向的速度 this.speedy = speedy; //y方向的速度 //增加球绘制的方法 this.draw = function() { txt.fillRect(this.x, this.y, this.rwidth, this.rheight); txt.fillStyle = this.color; txt.fill(); } //增加一个让球运动的方法 this.move = function() { this.x += this.speedx; this.y += this.speedy; //边界值判断 if (this.x <= 0 || this.x >= cw - this.rwidth) { this.speedx *= -1; } if (this.y <= 0 || this.y >= ch - this.rheight) { this.speedy *= -1; } } } var rect1 = new Rect(20, 50, 20, 20, "red", 5, 2); var rect2 = new Rect(80, 20, 40, 40, "green", 4, 1); function peng(rect1, rect2) { //矩形1的信息 var x1 = rect1.x, y1 = rect1.y, width1 = rect1.rwidth, height1 = rect1.rheight; //矩形2的信息 var x2 = rect2.x, y2 = rect2.y, width2 = rect2.rwidth; height2 = rect2.rheight; //如果两个球距离越近,circle越来越小,rtotal不变 if (x1 + width1 >= x2 && x2 + width2 >= x1 && y2 + height2 >= y1 && y1 + height1 >= y2) { return true; } } //动画 function animate() { txt.clearRect(0, 0, cw, ch); if (peng(rect1, rect2)) { rect1.speedx *= -1; rect1.speedy *= -1; rect2.speedx *= -1; rect2.speedy *= -1; } rect1.draw(); rect1.move(); rect2.draw(); rect2.move(); window.requestAnimationFrame(animate); } animate();
↑上面代码改变,会自动显示代码结果 jQuery调用版本:
1.11.3
立即下载
jscanvas两个矩形碰撞
代码描述:canvas JS 实现的两个矩形碰撞
0
最新
发表评论
全部评论
暂时没有评论!
登录后才可以评论
30秒后在评论吧!
发表评论
回复
取消回复
<!doctype html> <html> <head> <meta charset="utf-8"> <title>jscanvas两个矩形碰撞-jq22.com</title> <script src="https://libs.baidu.com/jquery/1.11.3/jquery.min.js"></script> <style>
</style> </head> <body>
<script>
</script>
</body> </html>
2012-2021 jQuery插件库版权所有
jquery插件
|
jq22工具库
|
网页技术
|
广告合作
|
在线反馈
|
版权声明
沪ICP备13043785号-1
浙公网安备 33041102000314号