js实现碰撞检测
导读:收集整理的这篇文章主要介绍了js实现碰撞检测,觉得挺不错的,现在分享给大家,也给大家做个参考。 本文实例为大家分享了js实现碰撞检测的具体代码,供大家参考,具体内容如下代码:<!D...
收集整理的这篇文章主要介绍了js实现碰撞检测,觉得挺不错的,现在分享给大家,也给大家做个参考。 本文实例为大家分享了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实现碰撞检测的方法分析
- javascript制作游戏开发碰撞检测的封装代码
- js实现碰撞检测特效代码分享
- 原生JS实现的碰撞检测功能示例
- 原生js实现碰撞检测
- javascript实现多边形碰撞检测
- 基于javascript实现碰撞检测
- js实现拖拽与碰撞检测
- 原生js实现移动小球(碰撞检测)
- js 实现碰撞检测的示例
- three.js利用射线Raycaster进行碰撞检测
声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!
若转载请注明出处: js实现碰撞检测
本文地址: https://pptw.com/jishu/594374.html
