“shape”属性について 指定できる値 サンプルコード # “shape”属性について “shape”属性はイメージマップの領域の形状を指定する属性です。イメージマップの領域の座標は“coords”属性で指定します。 # 指定できる値 属性値 説明 rect 長方形 circle 円形 poly 多角形 default 画像全体 # サンプルコード <img src="sample_map.png" alt="イメージマップのサンプル" usemap="#sample10"> <map name="sample10"> <area href="sample1.html" shape="rect" coords="8,32,72,99" alt="長方形"> <area href="sample2.html" shape="poly" coords="97,103,30,193,163,193" alt="多角形"> <area href="sample3.html" shape="circle" coords="146,59,47" alt="円形"> </map>