HTML <area> coords Attribute

❮ علامة HTML <area>

مثال

استخدم سمة coords لتحديد إحداثيات كل منطقة في خريطة الصورة:

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

التعريف والاستخدام

تحدد السمة coordsإحداثيات منطقة في خريطة الصورة.

تُستخدم coordsالسمة مع shapeالسمة لتحديد حجم المنطقة وشكلها وموضعها.

نصيحة: إحداثيات الزاوية العلوية اليسرى للمنطقة هي 0،0.


دعم المتصفح

Attribute
coords Yes Yes Yes Yes Yes

بناء الجملة

<area coords="value">

قيم السمات

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>