是否可以在带有背景图像的div中添加热点?
非常感谢。
埃里克
答案 0 :(得分:6)
可以肯定的是,只需在相对定位的div中使用绝对定位的链接(带有背景图像)。
示例HTML
<div class="hotspot-container">
<a href="some-href-for-the-hot-spot" class="hotspot"> </a>
</div>
<强> CSS 强>
.hotspot-container {
width: 200px; height: 200px;
position: relative;
background: url(some-background-image) no-repeat;
}
.hotspot-container .hotspot {
width: 10px; height: 10px;
position: absolute;
top: 20px; /* Top coord of hotspot (relative to parent, bottom: 20px is also valid) */
left: 20px; /* Left coord of hotspot (right: 20px is also valid); */
}