有没有办法在 jquery 中使用图像映射坐标?
我想使用图像地图的坐标,而不是地图本身。所以我的问题是我可以使用图像地图的坐标并检测用户是否使用 jquery 滚动过这些坐标吗?
编辑:
我的目标是这样的:(实际上并没有使用图像映射,只是它的坐标。)
图像映射中的坐标:186,106,199,86,220,86,241,94,245,109
$("img#test").hover(function(e) {
if (e.pageX >= 186 && e.pageY >= 106 &&
e.pageX >= 199 && e.pageY >= 86 &&
e.pageX >= 220 && e.pageY >= 86 &&
e.pageX >= 241 && e.pageY >= 94 &&
e.pageX >= 245 && e.pageY >= 109)
alert("wewt");
});
I want to use the coordinates of an image map but not the map itself. So my question is can I use the coordinates of an image map and detect if a user has scrolled over those coordinates using jquery?
EDIT:
I'm aiming for something like this: (not actually using an image map, just it's coords.)
Coords from the image map: 186,106,199,86,220,86,241,94,245,109
$("img#test").hover(function(e) {
if (e.pageX >= 186 && e.pageY >= 106 &&
e.pageX >= 199 && e.pageY >= 86 &&
e.pageX >= 220 && e.pageY >= 86 &&
e.pageX >= 241 && e.pageY >= 94 &&
e.pageX >= 245 && e.pageY >= 109)
alert("wewt");
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以直接或使用 jQuery 将事件侦听器添加到标签。例如:
You can add event listeners to the tags, directly or using jQuery. For instance: