एचटीएमएल संदर्भ

वर्णमाला द्वारा HTML श्रेणी के अनुसार HTML एचटीएमएल ब्राउज़र समर्थन एचटीएमएल गुण HTML वैश्विक गुण एचटीएमएल घटनाक्रम एचटीएमएल रंग एचटीएमएल कैनवास एचटीएमएल ऑडियो/वीडियो एचटीएमएल कैरेक्टर सेट एचटीएमएल सिद्धांत एचटीएमएल यूआरएल एनकोड एचटीएमएल भाषा कोड एचटीएमएल देश कोड HTTP संदेश HTTP तरीके पीएक्स से ईएम कन्वर्टर कुंजीपटल अल्प मार्ग


HTML <क्षेत्र> निर्देशांक विशेषता

❮ एचटीएमएल <क्षेत्र> टैग

उदाहरण

छवि मानचित्र में प्रत्येक क्षेत्र के निर्देशांक निर्दिष्ट करने के लिए कोर्ड्स विशेषता का उपयोग करें:

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

❮ एचटीएमएल <क्षेत्र> टैग