发现相对于恢复的浏览器窗口的鼠标位置

发布于 2024-12-03 16:29:24 字数 220 浏览 6 评论 0原文

如何发现鼠标相对于可查看浏览器窗口的位置?如果您看到下面的屏幕截图,我想确定鼠标悬停在这四个缩略图上时相对于浏览器窗口中可视区域的坐标。正如您所看到的,我将可视区域的左上角视为 0, 0。我想要确切的鼠标位置,而不是缩略图的位置,并且我想要实现跨浏览器兼容性。

在此处输入图像描述

有帮助吗?

How do I discover the mouse position relative to the viewable browser window? If you see screenshot below, I want to determine the co-ordinates of the mouse relative to the viewable area in the browser window whilst hovering over those four thumbnails. As you can see I consider the top left corner of the viewable area as 0, 0. I want the exact mouse position and not the position of the thumbnails and I want to achieve cross-browser compatibility.

enter image description here

Any help?

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

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

发布评论

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

评论(1

从﹋此江山别 2024-12-10 16:29:24

找到解决办法:

$(document).ready(function () {
    $("img.thumbnails").mousemove(function (event) {
        //X relative to viewable area
        var X = (event.pageX - $(window).scrollLeft());

        //Y relative to viewable area
        var Y = (event.pageY - $(window).scrollTop());
    });
});

谢谢!

Found a solution:

$(document).ready(function () {
    $("img.thumbnails").mousemove(function (event) {
        //X relative to viewable area
        var X = (event.pageX - $(window).scrollLeft());

        //Y relative to viewable area
        var Y = (event.pageY - $(window).scrollTop());
    });
});

Thanks!

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