鼠标移出屏幕时无法创建代码(JavaScript)

时间:2015-08-27 21:28:08

标签: javascript

如果鼠标出门,我正在尝试创建代码 例如,我将鼠标向右移动,鼠标向左移动 像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;

我有点绝望。

1 个答案:

答案 0 :(得分:0)

无法包裹鼠标指针,因为您需要抓住指针将其移动到DIV的另一侧,或者您用于显示区域的任何内容。

如果您的指针无法离开网页,则会出现安全问题。

在此处阅读更多内容:Move the mouse pointer to a specific position?