超链接图像的部分

时间:2016-04-28 15:52:13

标签: html5 css3

嗨,我试图将图像的某些部分超链接到不同的网页。

图片是地图,因此点击不同的部分,应该将其带到相关的网页。 我只想使用HTML5和CSS3。

感谢任何帮助。

图片链接如下。

Floor Plan

1 个答案:

答案 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;
&#13;
&#13;