HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTMLcoords属性


要素のcords属性は、画像マップの領域の座標を設定するために使用されます。形状属性とともに属性を使用し、領域のサイズと形状を設定します。

構文は次のとおりです

<area coords="value">

上記の値の下で、さまざまなパラメータを使用して次の座標を設定できます-

x1、y1、x2、y2 長方形の左上隅と右下隅の座標(shape ="rect")
x、y、radius 円の中心と半径の座標(shape ="circle")
x1、y1、x2、y2、..、xn、yn ポリゴンのエッジの座標。

要素-

のcords属性を実装する例を見てみましょう。

<!DOCTYPE html>
<html>
<body>
<h2>Learning</h2>
<p>Learn these technologies with ease....</p>
<img src = /images/usemap.gif alt = "usemap" border = "0" usemap = "#tutorials"/>
<map name = "tutorials">
   <area shape = "poly" coords = "74,0,113,29,98,72,52,72,38,27"
      href = "/perl/index.htm" alt = "Perl Tutorial" target = "_blank" />
   <area shape = "rect" coords = "22,83,126,125" alt = "HTML Tutorial"
      href = "/html/index.htm" target = "_blank" />
   <area shape = "circle" coords = "73,168,32" alt = "PHP Tutorial"
      href = "/php/index.htm" target = "_blank" />
</map>
</body>
</html>

出力

HTML area coords属性

上記の例では、次の画像に地図を設定しています-

<img src = /images/usemap.gif alt = "usemap" border = "0" usemap = "#tutorials"/>

これで、マップとその中の領域を形状に設定しました-

<map name = "tutorials">
   <area shape = "poly" coords = "74,0,113,29,98,72,52,72,38,27"
      href = "/perl/index.htm" alt = "Perl Tutorial" target = "_blank" />
   <area shape = "rect" coords = "22,83,126,125" alt = "HTML Tutorial"
      href = "/html/index.htm" target = "_blank" />
   <area shape = "circle" coords = "73,168,32" alt = "PHP Tutorial"
      href = "/php/index.htm" target = "_blank" />
</map>

エリアを設定する際に、コード属性-

を使用してエリアの座標を設定しました。
<area shape = "rect" coords = "22,83,126,125" alt = "HTML Tutorial"
   href = "/html/index.htm" target = "_blank" />

  1. HTML値属性

    HTML value属性は、HTMLドキュメント内のHTML要素の初期値を定義します。 ボタン、入力、メーター、li、オプション、進行状況に適用できます。 およびparam HTML要素。 構文 以下は構文です- <tagname value=”text”></tagname> HTML値の属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <style>    body {       color: #000;   &n

  2. HTMLスタイル属性

    HTMLスタイル属性は、HTMLドキュメントの要素のインラインスタイルを定義します。これはグローバル属性であり、任意のHTML要素で使用できることを意味します。 構文 以下は構文です- <tagname style=”text”></tagname> HTMLスタイルの属性の例を見てみましょう- 例 <!DOCTYPE html> <html> <style>    body {       color: #000;