Maison > interface Web > js tutoriel > Comment déterminer la méthode de collision via JS

Comment déterminer la méthode de collision via JS

jacklove
Libérer: 2018-06-11 16:16:01
original
1656 Les gens l'ont consulté

JS détermine la méthode de collision

/** 判断是否碰撞
 * @param obj 原对象
 * @param dobj 目标对象
 */
function impact(obj, dobj) {
	var o = {
		x: getDefaultStyle(obj, 'left'),
		y: getDefaultStyle(obj, 'top'),
		w: getDefaultStyle(obj, 'width'),
		h: getDefaultStyle(obj, 'height')
	}
	var d = {
		x: getDefaultStyle(dobj, 'left'),
		y: getDefaultStyle(dobj, 'top'),
		w: getDefaultStyle(dobj, 'width'),
		h: getDefaultStyle(dobj, 'height')
	}
	var px, py;
	px = o.x <= d.x ? d.x : o.x;
	py = o.y <= d.y ? d.y : o.y;
	// 判断点是否都在两个对象中
	if (px >= o.x && px <= o.x + o.w && py >= o.y && py <= o.y + o.h && px >= d.x && px <= d.x + d.w && py >= d.y && py <= d.y + d.h) {
		return true;
	} else {
		return false;
	}
}
/** 获取对象属性
 * @param obj		对象
 * @param attribute	属性
 */
function getDefaultStyle(obj, attribute) {
	return parseInt(obj.currentStyle ? obj.currentStyle[attribute] : document.defaultView.getComputedStyle(obj, false)[attribute]);
}
Copier après la connexion


démo :

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title> demo </title>
  <style type="text/css">
  body{margin:0px;}
	.main{position:relative;}
	#f1{position:absolute; background:#FF0000; top:100px; left:100px; width:200px; height:200px; z-index:999}
	#f2{position:absolute; background:#FFFF00; top:0px; left:0px; width:600px; height:150px;}
  </style>
 </head>
 <body>
 <p class="main">
	<p id="f1"></p>
	<p id="f2"></p>
 </p>
 <script type="text/javascript">
	var o = document.getElementById("f1");
	var d = document.getElementById("f2");
	alert(impact(o, d));
	function impact(obj, dobj) {
		var o = {
			x: getDefaultStyle(obj, 'left'),
			y: getDefaultStyle(obj, 'top'),
			w: getDefaultStyle(obj, 'width'),
			h: getDefaultStyle(obj, 'height')
		}
		var d = {
			x: getDefaultStyle(dobj, 'left'),
			y: getDefaultStyle(dobj, 'top'),
			w: getDefaultStyle(dobj, 'width'),
			h: getDefaultStyle(dobj, 'height')
		}
		var px, py;
		px = o.x <= d.x ? d.x : o.x;
		py = o.y <= d.y ? d.y : o.y;
		// 判断点是否都在两个对象中
		if (px >= o.x && px <= o.x + o.w && py >= o.y && py <= o.y + o.h && px >= d.x && px <= d.x + d.w && py >= d.y && py <= d.y + d.h) {
			return true;
		} else {
			return false;
		}
	}
	function getDefaultStyle(obj, attribute) {
		return parseInt(obj.currentStyle ? obj.currentStyle[attribute] : document.defaultView.getComputedStyle(obj, false)[attribute]);
	}
 </script>
 
 </body>
</html>
Copier après la connexion

Cet article explique comment déterminer la méthode de collision via JS. Pour plus de contenu connexe, veuillez payer. attention au site php chinois.

Recommandations associées :

Comment utiliser CSS pour obtenir l'effet de cercle (Sprites CSS)

Comment exécuter AES256 cryptage via l'algorithme PHP

Comment envoyer des e-mails avec pièces jointes via php

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal