使用 jQuery 检测鼠标方向
我想在用户悬停某个元素时启动一个操作,但前提是鼠标来自该元素下方。即悬停检查光标的方向,并且仅当方向为“向上”(光标从下方进入元素)时才触发函数。
有一篇关于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的解决方案是:
这只是一个快速的解决方案,希望它对您有用......
A simple solution will be:
It's just a quick one, hopefully it works for you...