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