答案 0 :(得分:1)
扩展我上面的评论,您可以使用image maps。您可以使用许多在线图像映射生成器来定义坐标(例如image-maps.com)。以下是使用您提供的图片的示例:
<img src="http://i.stack.imgur.com/9Gecp.jpg" usemap="#linkmap" />
<map name="linkmap">
<area alt="board-games" title="Board Games" href="boardgames.html" shape="rect" coords="17,86,188,214" style="outline:none;" target="_self" />
<area alt="lego-models" title="Lego Models" href="lego-models.html" shape="rect" coords="130,256,367,372" style="outline:none;" target="_self" />
<area alt="playing-cards" title="Playing Cards" href="playing-cards.html" shape="rect" coords="261,110,377,197" style="outline:none;" target="_self" />
</map>
&#13;