Attributo delle coordinate HTML <area>

❮ Tag HTML <area>

Esempio

Usa l'attributo coords per specificare le coordinate di ciascuna area nella mappa immagine:

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

Definizione e utilizzo

L' coordsattributo specifica le coordinate di un'area in una mappa immagine.

L' coordsattributo viene utilizzato insieme shapeall'attributo per specificare la dimensione, la forma e il posizionamento di un'area.

Suggerimento: le coordinate dell'angolo superiore sinistro di un'area sono 0,0.


Supporto del browser

Attribute
coords Yes Yes Yes Yes Yes

Sintassi

<area coords="value">

Valori di attributo

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

❮ Tag HTML <area>