将图像的区域转换为单独的链接。

时间:2013-10-04 12:15:15

标签: html

我做了一段时间,但不记得它叫什么。我想定义一个图像的三个部分,并将它们链接到不同的网站。这叫什么,我该怎么办?谢谢!

2 个答案:

答案 0 :(得分:1)

这被称为图片地图,虽然它们现在不太常见。

参考:http://www.w3.org/TR/REC-html40/struct/objects.html#h-13.6

答案 1 :(得分:1)

您可以使用<map>代码执行此操作:

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">

<map name="planetmap">
   <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
   <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
   <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>