Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML에서 이미지를 클라이언트 측 이미지 맵으로 지정하는 방법은 무엇입니까?


usemap 사용 HTML에서 클라이언트 측 이미지 맵으로 이미지를 지정하는 속성. 다음 코드를 실행하여 usemap을 구현할 수 있습니다. 속성 -

예시

<!DOCTYPE html>
<html>
   <head>
      <title>HTML map Tag</title>
   </head>
   <body>
      <img src = "/images/html.gif" alt = "HTML Map" border = "0" usemap = "#html"/>
      <!-- Create Mappings -->
      <map name = "html">
         <area shape = "circle" coords = "154,150,59" href = "about/about_team.htm"
         alt = "Team" target = "_self" />
      </map>
   </body>
</html>