图片分区

<img src="china.gif" usemap="#mymap">

     <map name="mymap">

            <area shape="rect" href="a.html" coords="140,20,280,60">

             <area shape="poly" href="a.html" coords="100,100,180,80,200,140">

            <area shape="circle" href="c.html" coords="80,100,60">

     </map>

shape        属性的设置说明:

        rect定义一个矩形区域,coords属性设置值为矩形的左上角,右下角的坐标,各个坐标值之间用逗号分开

        poly定义一个多边形区域,coords属性设置值为多边形各顶点的坐标

        circle定义一个圆形区域,coords属性设置值为圆心坐标及半径,前两个参数分别为圆心的横、纵坐标,第三个参数为半径。 

你可能感兴趣的:(图片)