jquery如何动态着色区域
我有这样的图像映射
<map name="imgmap">
<area shape="poly" coords="63,10,64,38,89,37,91,10" href="#" id="x1"></map>
,如何使用 jquery 动态为该区域着色
("#x1").color('red')
?
I have image map like this
<map name="imgmap">
<area shape="poly" coords="63,10,64,38,89,37,91,10" href="#" id="x1"></map>
and how can I color that area dynamically with jquery like
("#x1").color('red')
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以尝试使用jquery的maphilight插件。它可以实现您想要实现的目标 - http://davidlynch .org/blog/2008/03/maphilight-image-map-mouseover-highlighting/
you can try using the maphilight plugin of jquery. it does what you want to achieve - http://davidlynch.org/blog/2008/03/maphilight-image-map-mouseover-highlighting/
最初我认为这可能有效:
但是,经过进一步调查,很明显没有简单的方法可以做到你想要的。
也许,您的目标可以通过将特殊图像绝对定位在主图像下并将它们弹出到
$("#x1").hover()
上来实现。Originally I thought that this might work:
However, upon further investigation it become quite clear that there is no easy way to do what you want.
Perhaps, your aim could be achieved by absolute positioning of the special images under your main image and poping them up on
$("#x1").hover()
.使用此代码...hopw它将帮助您...
use this code .... hopw it will help you...