极乐门资源网 Design By www.ioogu.com
本文实例为大家分享了js实现碰撞检测的具体代码,供大家参考,具体内容如下
代码:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <style> div { position: absolute; top: 0px; right: 0px; bottom: 0px; left: 0px; margin: auto; width: 300px; height: 300px; background-color: green; } span { position: absolute; top: 0px; left: 0px; display: block; width: 100px; height: 100px; background-color: rgb(10, 151, 233); } </style> <body> <div></div> <span></span> <script> var div = document.getElementsByTagName('div')[0]; var span = document.getElementsByTagName('span')[0]; span.onmousedown = function(e) { // 事件对象兼容 e = window.event || e; // 添加全局捕获 if (span.setCapture) { span.setCapture(); } // 鼠标按下获取鼠标距离页面左侧和顶部距离 var x = e.clientX; var y = e.clientY; // 元素距离页面左侧和顶部距离 var elex = span.offsetLeft; var eley = span.offsetTop; // 鼠标距离元素距离 =鼠标距离页面距离 -元素距离页面距离 var X = x - elex; var Y = y - eley; document.onmousemove = function(e) { // 鼠标移动 获取鼠标距离页面距离 // 事件对象兼容 e = window.event || e; var movex = e.clientX; var movey = e.clientY; // 元素的left和top值 =鼠标距离页面距离 -鼠标距离元素距离 var leftx = movex - X; var lefty = movey - Y; /*----------------------------------------------------------*/ // 碰撞检测 // 1.左侧安全距离 =大盒子距离页面左侧距离 -小盒子占位宽 var safeleft = div.offsetLeft - span.offsetWidth; // 2.右侧安全距离 大盒子距离页面左侧距离 +大盒子占位宽 var saferight = div.offsetLeft + div.offsetWidth; // 3.上侧安全距离 =大盒子距离页面顶部距离 -小盒子占位高 var safetop = div.offsetTop - span.offsetHeight; // 4. 下侧安全距离 = 大盒子距离页面顶部距离 + 大盒子占位高 var safebottom = div.offsetTop + div.offsetHeight; if (leftx < safeleft || leftx > saferight || lefty < safetop || lefty > safebottom) { div.style.background = 'green'; } else { div.style.background = 'red'; } /*----------------------------------------------------------*/ // 边界值 // 左 if (leftx <= 0) { leftx = 0; } // 上 if (lefty <= 0) { lefty = 0; } // 右 var rightx = document.documentElement.clientWidth - span.offsetWidth; if (leftx >= rightx) leftx = rightx; // 下 var righty = document.documentElement.clientHeight - span.offsetHeight; if (lefty >= righty) { lefty = righty; } span.style.left = leftx + 'px'; span.style.top = lefty + 'px'; } document.onmouseup = function() { document.onmousemove = null; if (span.releaseCapture) { span.releaseCapture(); } } // 阻止默认事件 return false; } </script> </body> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
标签:
js,碰撞检测
极乐门资源网 Design By www.ioogu.com
极乐门资源网
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
极乐门资源网 Design By www.ioogu.com
暂无js实现碰撞检测的评论...
更新日志
2024年11月15日
2024年11月15日
- 谭咏麟《20世纪中华歌坛名人百集珍藏版》[WAV+CUE][1G]
- 炉石传说40轮盘术最新卡组代码在哪找 标准40轮盘术卡组代码分享
- 炉石传说亲王贼怎么玩 2024亲王贼最新卡组代码分享
- 炉石传说30.6.2补丁后有什么卡组 30.6.2最强卡组最新推荐
- 模拟之声慢刻CD《蔡琴名曲回顾遇听》[原抓WAV+CUE]
- BruceLiu-WAVES(MusicbySatie)(2024)2CD[24Bit-96kHz]FLAC
- KonstantinKrimmel-MythosSchubertLoewe(2024)[24Bit-96kHz]FLAC
- 2024雷蛇高校挑战赛 嘤式分解助力收官之战
- 海信发布110吋世俱杯官方定制AI电视 引领智能观赛
- 海信发布27英寸显示器大圣G5 Pro:采用自研超解析芯片、友达原厂模组
- 蔡琴《机遇》1:1母盘直刻日本头版[WAV分轨][1.1G]
- 陈百强《与你几分钟的约会》XRCD+SHMCD限量编号版[低速原抓WAV+CUE][994M]
- 陈洁丽《监听王NO.1 》示范级发烧天碟[WAV+分轨][1.1G]
- 单色凌.2014-小岁月太着急【海蝶】【WAV+CUE】
- 陈淑桦.1988-抱紧我HOLD.ME.NOW【EMI百代】【WAV+CUE】