Thuộc tính coords HTML < areosystem

❮ Thẻ HTML <areosystem

Thí dụ

Sử dụng thuộc tính coords để chỉ định tọa độ của từng khu vực trong bản đồ hình ảnh:

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

Định nghĩa và Cách sử dụng

Thuộc coordstính chỉ định tọa độ của một khu vực trong bản đồ hình ảnh.

Thuộc coordstính được sử dụng cùng với shapethuộc tính để chỉ định kích thước, hình dạng và vị trí của một khu vực.

Mẹo: Tọa độ của góc trên cùng bên trái của một khu vực là 0,0.


Hỗ trợ trình duyệt

Attribute
coords Yes Yes Yes Yes Yes

Cú pháp

<area coords="value">

Giá trị thuộc tính

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

❮ Thẻ HTML <areosystem