使用 jQuery 检测鼠标方向

发布于 2024-12-17 13:13:39 字数 169 浏览 2 评论 0原文

我想在用户悬停某个元素时启动一个操作,但前提是鼠标来自该元素下方。即悬停检查光标的方向,并且仅当方向为“向上”(光标从下方进入元素)时才触发函数。

有一篇关于 jQuery 鼠标悬停方向的类似文章,但我假设如果我只需要“向上”和“向下”而不是使用鼠标位置来确定每个可能的角度,那么一定有一个更简单的解决方案。

I want to initiate an action when the user hovers a certain element, but only if the mouse was coming from below the element. i.e. the hover checks for the cursor's direction, and fires a function only if the direction was "up" (the cursor entered the element from below).

There's a similar post about jQuery hover with mouse direction, but I'm assuming there must be a simpler solution if I only need 'up' and 'down' rather than using the mouse position to determine every possible angle.

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

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

发布评论

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

评论(1

蓝礼 2024-12-24 13:13:39

一个简单的解决方案是:

var mY = 0;
var over = 0;
var direction = '';
$(document).ready(function(){
    $('body').mousemove(function(e){
        if (over == 0) mY = e.pageY;
    });
    $('.my_element').bind('mouseover mousemove', function(e){
        over = 1;
        if (e.pageY < mY){
            direction = 'From Bottom';
        }else{
            direction = 'From Top';
        }

    });
    $('.my_element').bind('mouseout', function(){
        over = 0;
    });
});

这只是一个快速的解决方案,希望它对您有用......

A simple solution will be:

var mY = 0;
var over = 0;
var direction = '';
$(document).ready(function(){
    $('body').mousemove(function(e){
        if (over == 0) mY = e.pageY;
    });
    $('.my_element').bind('mouseover mousemove', function(e){
        over = 1;
        if (e.pageY < mY){
            direction = 'From Bottom';
        }else{
            direction = 'From Top';
        }

    });
    $('.my_element').bind('mouseout', function(){
        over = 0;
    });
});

It's just a quick one, hopefully it works for you...

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