很早的一个效果,今天偶然用到
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>双屏鼠标跟随效果</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
border: 0;
height: 100%;
width: 100%;
}
#handDiv {
width: 40px;
height: 40px;
background: url("123.png");
position: absolute;
display: none;
}
</style>
<script>
window.onload = function() {
var oTop = document.getElementById("handDiv");
document.getElementById("leftdiv").onmousemove = function(event) {
document.getElementById("handDiv").style.display="block";
var oEvent = event || window.event;
var scrollleft = document.documentElement.scrollLeft || document.body.scrollLeft;
var scrolltop = document.documentElement.scrollTop || document.body.scrollTop;
oTop.style.left = oEvent.clientX + window.screen.availWidth / 2 + 10 + "px";
oTop.style.top = oEvent.clientY + scrolltop + 10 + "px";
}
document.getElementById("leftdiv").onmousedown = function(event) {
document.getElementById("handDiv").style.display="block";
var oEvent = event || window.event;
var scrollleft = document.documentElement.scrollLeft || document.body.scrollLeft;
var scrolltop = document.documentElement.scrollTop || document.body.scrollTop;
oTop.style.left = oEvent.clientX + window.screen.availWidth / 2 + "px";
oTop.style.top = oEvent.clientY + scrolltop + "px";
}
document.getElementById("leftdiv").onmouseout = function(event) {
document.getElementById("handDiv").style.display="none";
}
document.getElementById("rightdiv").onmousemove = function(event) {
document.getElementById("handDiv").style.display="block";
var oEvent = event || window.event;
var scrollleft = document.documentElement.scrollLeft || document.body.scrollLeft;
var scrolltop = document.documentElement.scrollTop || document.body.scrollTop;
oTop.style.left = oEvent.clientX - window.screen.availWidth / 2 + "px";
oTop.style.top = oEvent.clientY + scrolltop + "px";
}
document.getElementById("rightdiv").onmousedown = function(event) {
document.getElementById("handDiv").style.display="block";
var oEvent = event || window.event;
var scrollleft = document.documentElement.scrollLeft || document.body.scrollLeft;
var scrolltop = document.documentElement.scrollTop || document.body.scrollTop;
oTop.style.left = oEvent.clientX - window.screen.availWidth / 2 + "px";
oTop.style.top = oEvent.clientY + scrolltop + "px";
}
document.getElementById("rightdiv").onmouseout = function(event) {
document.getElementById("handDiv").style.display="none";
}
}
</script>
</head>
<body>
<div id="leftdiv" style="width: 50%;height: 100%;background-color: gray;position: absolute;">
</div>
<div id="rightdiv" style="width: 50%;height: 100%;background-color: green;position: absolute;float: right;right: 0;">
</div>
<div id="handDiv"></div>
</body>
</html>