Yui 鼠标坐标在元素上
我正在尝试确定鼠标是否位于某个元素上,如果已经有方法的话,最好使用 YUI 来确定。
基本上类似于
function bool IsMouseOver(Element);
I'm trying to determine if the mouse is over an element preferably with YUI if there is a method for that already.
Basically something like
function bool IsMouseOver(Element);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后我自己检查了一下。
我有目标元素的区域
然后是鼠标坐标
然后是一个简单的 if 语句来检查鼠标坐标是否在该区域中
I ended up checking it myself.
I have the region from the target element
Then the mouse coordinates
And then a simple if statement to check if the mouse coordinates were in the region