是否可以在带有背景图像的div中添加热点?
非常感谢。
埃里克

最佳答案

当然是的,只需在相对位置的div(带有背景图像)内使用绝对位置的链接。
HTML示例

<div class="hotspot-container">
    <a href="some-href-for-the-hot-spot" class="hotspot">&nbsp</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); */
  }

09-17 23:58