使用JavaScript怎么实现一个碰撞检测功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
代码:
<!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>
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注亿速云行业资讯频道,感谢您对亿速云的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。