如果鼠标出门,我正在尝试创建代码 例如,我将鼠标向右移动,鼠标向左移动 像Blender一样。
var x, y;
function handleMouse(e) {
if (x && y) {
window.scrollBy(e.clientX - x, e.clientY - y);
}
x = e.clientX;
y = e.clientY;
/* That code I need goes here... */
}
document.onmousemove = handleMouse;
我有点绝望。
答案 0 :(得分:0)
无法包裹鼠标指针,因为您需要抓住指针将其移动到DIV的另一侧,或者您用于显示区域的任何内容。
如果您的指针无法离开网页,则会出现安全问题。