HTML <area> kodları Özellik

❮ HTML <area> etiketi

Örnek

Görüntü haritasındaki her alanın koordinatlarını belirtmek için coords niteliğini kullanın:

<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>

Tanım ve Kullanım

Nitelik coords, bir görüntü haritasındaki bir alanın koordinatlarını belirtir.

Nitelik , bir alanın boyutunu, şeklini ve yerleşimini belirtmek için nitelik coordsile birlikte kullanılır .shape

İpucu: Bir alanın sol üst köşesinin koordinatları 0,0'dır.


Tarayıcı Desteği

Attribute
coords Yes Yes Yes Yes Yes

Sözdizimi

<area coords="value">

Özellik Değerleri

Value Description
x1,y1,x2,y2 Specifies the coordinates of the top-left and bottom-right corner of the rectangle (shape="rect")
x,y,radius Specifies the coordinates of the circle center and the radius (shape="circle")
x1,y1,x2,y2,..,xn,yn Specifies the coordinates of the edges of the polygon. If the first and last coordinate pairs are not the same, the browser will add the last coordinate pair to close the polygon (shape="poly")

❮ HTML <area> etiketi