英[mæp] 美[mæp]
n. 지도, 천체 지도; 〈미국 속어〉 얼굴, 유전자 지도(염색체 상의 유전자 배열)
vt. etc.) ) 지도; 세부 계획; [유전학] 비교
3인칭 단수: 지도 복수: 지도 현재 분사: 지도 과거 분사: 지도
HTML 지도 태그 통사론
기능: 클라이언트 이미지 맵을 정의합니다.
설명: 이미지 맵(image-map)은 클릭 가능한 영역이 있는 이미지를 말합니다.
참고: 지역 요소는 항상 지도 요소 내에 중첩됩니다. 영역 요소는 이미지 맵의 영역을 정의합니다. <img>의 usemap 속성은 <map>의 id 또는 name 속성을 참조할 수 있으므로(브라우저에 따라) id와 name 속성을 모두 <map>에 추가해야 합니다.
HTML 지도 태그 예
<html> <body> <img src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" border="0" usemap="#planetmap" alt="Planets" /> <map name="planetmap" id="planetmap"> <area shape="circle" coords="180,139,14" href ="http://www.php.cn/example/html/venus.html" target ="_blank" alt="Venus" /> <area shape="circle" coords="129,161,10" href ="http://www.php.cn/example/html/venus.html" target ="_blank" alt="Mercury" /> <area shape="rect" coords="0,0,110,260" href ="http://www.php.cn/example/html/venus.html" target ="_blank" alt="Sun" /> </map> <p><b>注释:</b>img 元素中的 "usemap" 属性引用 map 元素中的 "id" 或 "name" 属性(根据浏览器),所以我们同时向 map 元素添加了 "id" 和 "name" 属性。</p> </body> </html>