HTML/Javascript 在鼠标悬停区域上覆盖图像
所以我在页面上有一个图像和一个与该图像对应的图像映射,然后我还有两个相应的图像,每个图像的大小与第一个图像(大部分是透明的)相同,当图像映射的某个区域时我想覆盖到该图像上鼠标悬停在上面。我该如何去做,这是我可以用 CSS 完成的事情还是我需要 javascript 来完成?
So I have an image on a page and an imagemap corresponding to that image, then I also have two corresponding images, each the same size as the first (mostly transparent) that I want to overlay onto that image when a certain region of the imagemap is moused over. How would I go about doing that, is this something I can accomplish with CSS or will I need javascript for it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您确实需要 Javascript,因为并非所有浏览器都支持除
之外的元素上的 css
hover
psuedo-class。您应该能够使用最少的 JavaScript 来完成此操作。请参阅标记:http://www.w3schools。 com/tags/tag_map.asp
例如,如果您希望将鼠标悬停在图像 (image1.png) 左上角的 100 x 100 像素正方形上以启用叠加图像 (image2.png):
编辑:将地图应用到所有图像应该可以解决该问题,因为它们的大小都相同。
I think you do need Javascript as not all browsers support css
hover
psuedo-class on elements other than<a>
. You should be able to do it with minimal Javascript. See the<map>
tag: http://www.w3schools.com/tags/tag_map.aspFor example, if you want mousing over the 100 by 100 pixel square in the top left of your image (image1.png) to enable the overlay image (image2.png):
Edit: applying the map to all the images should solve that problem since they are all the same size.