Posts /

HTML: < map > 태그

Twitter Facebook Google+
21 Sep 2018

HTML Tag : <map> 태그

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

map 태그란?

map 태그는 클라이언트 측 이미지 맵을 정의하는 데 사용됩니다. 이미지 맵은 클릭 가능한 영역이있는 이미지입니다.

map 요소의 필수 name 속성은 img의 usemap 속성과 연관되어 있으며 이미지와 맵 사이에 관계를 만듭니다.

map 요소 는 이미지 맵에서 클릭 가능한 영역을 정의 하는 여러 area 요소를 포함합니다.

속성


Twitter Facebook Google+