浏览器距离

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>浏览器距离</title>
		<script type="text/javascript" src="js/jquery-3.1.1.min.js" ></script>
		<style>
			.one{
				float: left;
				width: 398px;
				height: 398px;
				border: 1px solid red;
				cursor:crosshair;
				margin-left: 100px;
				margin-top: 100px;
			}
			.two{
				float: left;
				width: 100px;
				height: 100px;
				margin-left: 20px;
				border: 1px solid red;
			}
			.three{
				float: left;
				width: 100px;
				height: 100px;
				margin-top: 100px;
				margin-left: 20px;
				border: 1px solid red;
			}
		</style>
	</head>
	<body>
		<div id = "one" class = "one">
			
		</div>
		<div id = "two" class = "two">
			
		</div>
		<div id = "three" class = "three">
			
		</div>
		<script>
			$("#one").mousemove(function(event){
				$("#two").css("width",event.clientX);
				$("#two").css("height",event.clientY);
				$("#three").css("width",event.offsetX);
				$("#three").css("height",event.offsetY);
			})
		</script>
	</body>
</html>

猜你喜欢

转载自blog.csdn.net/lhzau1996/article/details/85386445