如何确定鼠标光标的起始点和停止点?

发布于 2024-12-02 04:14:11 字数 190 浏览 0 评论 0原文

假设用户开始移动鼠标并停在浏览器上的某个位置。如何使用 Javascript/jQuery 确定开始点和停止点?

起始点很简单,我可以通过 mousemove 事件获取它,但是停止点呢?

我无法使用 mouseentermouseleave 事件,因为我的游乐场是窗口或文档本身。

Let's say the user starts to move mouse and stop at somewhere on the browser. How can I determine start and stop point with Javascript/jQuery?

Start point is easy, I can get it with mousemove event but what about stop point?

I can't use mouseenter or mouseleave events because my playground is window or document itself.

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

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

发布评论

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

评论(2

滥情哥ㄟ 2024-12-09 04:14:11

使用setTimeout 和clearTimeout 的组合。
如果用户在 x 秒内没有移动,则意味着他停止了。

我在这里给你写了一个例子:

<script type="text/javascript">
    var lastMove = 0;
    var lastTimeout = 0;
    jQuery(document).ready(function () {
        $(document).mousemove(function (e) {
            $('#status').html(e.pageX + ', ' + e.pageY);
            var currentMove = (new Date()).getTime();
            if (lastTimeout != 0) {
                clearTimeout(lastTimeout);
            }
            if (currentMove - lastMove > 1500)
            { alert('started'); }
            lastMove = currentMove;
            lastTimeout = setTimeout(function () {
                var currentMove = (new Date()).getTime();
                if (currentMove - lastMove > 1500)
                { alert('stopped'); }
            }, 1510);
        });
    })
</script>
<h2 id="status">
0, 0
</h2>

using a combination of setTimeout and clearTimeout.
If the user doesn't move for x amount of seconds then it means that he stopped.

Here I wrote you an example:

<script type="text/javascript">
    var lastMove = 0;
    var lastTimeout = 0;
    jQuery(document).ready(function () {
        $(document).mousemove(function (e) {
            $('#status').html(e.pageX + ', ' + e.pageY);
            var currentMove = (new Date()).getTime();
            if (lastTimeout != 0) {
                clearTimeout(lastTimeout);
            }
            if (currentMove - lastMove > 1500)
            { alert('started'); }
            lastMove = currentMove;
            lastTimeout = setTimeout(function () {
                var currentMove = (new Date()).getTime();
                if (currentMove - lastMove > 1500)
                { alert('stopped'); }
            }, 1510);
        });
    })
</script>
<h2 id="status">
0, 0
</h2>
顾冷 2024-12-09 04:14:11

起始位置是首次触发 mousemove 事件时的位置。它将持续发射,直到鼠标停止移动。因此,如果您将计时器(setTimeout/clearTimeout)添加到 mousemove 事件函数中,则可以说鼠标在经过一定时间后停止移动,而无需调用 mousemove 函数。

The start location is the location when the mousemove event is first fired. It will keep firing until the mouse stops moving. So, if you add a timer (setTimeout/clearTimeout) to your mousemove event function, you can say the mouse has stopped moving after a certain amount of time has passed without the mousemove function being called.

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