SVG 鼠标指针位置

发布于 2024-07-16 19:28:53 字数 114 浏览 2 评论 0原文

我想知道如何使用 JavaScript 找出鼠标指针在 SVG viewBox 范围内时的位置。 我是否需要使用事件模型来跟踪所有各种鼠标运动事件,或者是否有一种方法可以轮询鼠标指针,让它在需要时告诉我它在哪里?

I would like to know how I can use JavaScript to find out the location of the mouse pointer when it is within the bounds of an SVG viewBox. Do I need to use the event model to keep track of all the various mouse motion events, or is there a way I can poll the mouse pointer to have it tell me where it is when I need it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

原来是傀儡 2024-07-23 19:28:53

您可以挂钩 onmousemove 事件并访问事件对象:(

function on_mouse_move(evt) {
  var
    x = evt.clientX,
    y = evt.clientY;
}

假设 on_mouse_move 连接到 SVG 文档的 onmousemove 事件)。

You can hook to the onmousemove event and access the event object:

function on_mouse_move(evt) {
  var
    x = evt.clientX,
    y = evt.clientY;
}

(This assumes on_mouse_move is connected to the onmousemove event of your SVG document).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文