HTML
HTML <img> 元素
实例6:创建图像地图 - 本例演示如何创建带有可供点击区域的图像地图。其中的每个区域都是一个超级链接。
源代码:
点击运行 »
<p>点击太阳或其他行星,注意变化:</p> <img src="/examples/planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> <map name="planetmap"> <area shape="rect" coords="0,0,82,126" alt="Sun" href="/examples/sun.htm"> <area shape="circle" coords="90,58,3" alt="Mercury" href="/examples/mercur.htm"> <area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm"> </map>
运行结果:
点击运行 »