Najnowsze tutoriale tworzenie stron internetowych
 

HTML <img> usemap Attribute

<HTML <img> tag

Przykład

Obraz-map, z obszarami klikalne:

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">

<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>
Spróbuj sam "

Definicja i Wykorzystanie

usemap atrybut określa obraz jako client-side-map obrazu (obraz-mapa jest to obraz z obszarami klikalne).

usemap atrybut jest powiązany z <map> elementu name lub id atrybutu i tworzy relację między <img> i <map> .

Uwaga: usemap atrybut nie może być stosowane, jeżeli <img> element jest potomkiem <a> lub <button> elementu.


Pomoc Browser

Atrybut
usemap tak tak tak tak tak

Różnice między HTML 4.01 i HTML5

ŻADEN.


Składnia

<img usemap="#mapname">

wartości atrybutów

Wartość Opis
#mapname Postać hash ("#") plus name lub id z <map> Element używać

<HTML <img> tag