[Javascript / μλ°μ€ν¬λ¦½νΈ] κ°μ’ #22 - Image Map ( μ΄λ―Έμ§ 맡 )
μλ°μ€ν¬λ¦½νΈ μ΄λ―Έμ§ 맡
μ΄λ―Έμ§ 맡μ΄λ λκΉμ?
μλ μμ λ μ΄λ―Έμ§μ νΉμ μμμ λ§μ°μ€λ₯Ό μ¬λ €λμΌλ©΄ νΉμ κΈ°λ₯μ΄ μ€νμ΄ λκ³ ν΄λ¦μ νλ©΄ νΉμ URLλ‘ μ΄λμμΌμ£Όλλ‘ λμ΄μμ΅λλ€.
μμ€λ₯Ό 보μλ©΄ <map>κ³Ό <area>νκ·Έκ° μ¬μ©λ κ²μ΄ 보μ΄λκ΅°μ.
<area>μμλ μμμ μ§μ ν΄μ£Όκ³ μμλ΄μμ μΌμ΄λλ μ΄λ²€νΈμ λν΄μ μ΄λ€ κΈ°λ₯μ μ€νν μ§ μ§μ ν΄μ£Όκ³ μμ΅λλ€.
κ·Έλ¦¬κ³ μ΄ νκ·Έλ€μ <map>νκ·Έκ° κ°μΈκ³ μλ ννκ΅°μ.
μ€νν΄λ³΄μλ©΄ μ΄ν΄κ° μ λ κ²λλ€.
<area>νκ·Έμμ coordsλ μμμ λνλ΄λ ν¬μ§μ μ λ§ν©λλ€.
polyμμλ μ°μλλ λκ°μ μ«μκ° ν μ μ μμΉλ₯Ό μ§μ ν΄μ€λλ€.
μλ μμ μμλ 10κ°μ μ«μκ° μμΌλ μ΄ 5κ°μ μ μΌλ‘ ννλκ² κ΅°μ.
rectμμλ μ¬κ°νμ 그리기μν λ€κ°μ μ«μκ° νμν©λλ€.
κ°μ₯ μΌμͺ½ μλμ μ μ μ’νμ κ·Έ μ μ λκ°μ μ μμΉν μ μ μ’νκ² μ£ .
circleμμλ μμ λνλ΄κΈ°μν μΈκ°μ μ«μκ° μλ€μ.
μ€μ¬μ μ’ν(μ«μ 2κ°)μ λ°μ§λ¦μ κ°μΈ κ² κ°λ€μ.
μ’νλ₯Ό νλμ½λ©νμ§ μλ λ°©λ²μ μκ°ν΄μ ꡬννλ©΄ μΈλ§ν κ²λ κ°λ€μ.
<html>
<head>
<title>Using JavaScript Image Map</title>
<script type="text/javascript">
<!--
function showTutorial(name){
document.myform.stage.value = name
}
//-->
</script>
</head>
<body>
<form name="myform">
<input type="text" name="stage" size="20" />
</form>
<!-- Create Mappings -->
<img src="/images/usemap.gif" alt="HTML Map"
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="_self"
onMouseOver="showTutorial('perl')"
onMouseOut="showTutorial('')"/>
<area shape="rect"
coords="22,83,126,125"
href="/html/index.htm" alt="HTML Tutorial"
target="_self"
onMouseOver="showTutorial('html')"
onMouseOut="showTutorial('')"/>
<area shape="circle"
coords="73,168,32"
href="/php/index.htm" alt="PHP Tutorial"
target="_self"
onMouseOver="showTutorial('php')"
onMouseOut="showTutorial('')"/>
</map>
</body>
</html>
μ€μ λμνλ λͺ¨μ΅μ tutorialspoint μ¬μ΄νΈμμ νμΈ κ°λ₯ν©λλ€.
Reference : http://www.tutorialspoint.com/javascript/javascript_image_map.htm