html/css 图像链接中的透明度不可点击
我有一张 .png 星星图像。恒星周围的区域是透明的。这是我的代码示例
<a href='nextPage.html'><img src='starImage.png' border='0'></a>
如何仅使图像的星号部分可单击? -或者- 如何使图像的透明部分不可点击?
I have a .png image of a star. The area around the star is transparent. Here is an example of my code
<a href='nextPage.html'><img src='starImage.png' border='0'></a>
How do I get only the star part of the image to be clickable?
-or-
How do I get the transparent parts of the image to not be clickable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要使用区域形状图,
这只是一个示例。
您必须使用Dreamweaver上的区域形状图工具并绘制您需要的区域的多边形。
You need to use an area shape map
this is only an example.
You must use the area shape map tool on dreamweaver and draw the polygon of area u need.
您需要使用图像映射查看此网站来帮助您做到这一点...
http://www.image-maps.com/
有关图像地图的更多信息,请参阅这篇维基百科文章。
图像地图
you need to use an imagemap check out this site to help you do it...
http://www.image-maps.com/
For more information about what an image map is see this wikipedia article.
Image map
事实上,我们可以使父元素为position:relative,并使用z-index将链接区域放置在图像上。
像这样的东西:
In fact we can make the parent element position:relative, and use z-index to place the link area over the image.
Something like: