본문 바로가기

DEV/HTML

map area에서 cursor 모양을 바꾸기 ( 소스는 hand 적용 )

반응형

map area 사용시 a 태그를 사용하지 않으면 기본 커서로 표기가 된다.

커서 모양 사용 방법은 다음과 같다.

 

<img src="이미지명" usemap="#Map" id="imgID" />

<map name="Map" id="Map">

<area shap="rect" coords="0,0,100,100" onMouseOver="imgID.style.cursor='hand'" onMouseOut="imgID.style.cursor='hand'" />

</map>

반응형
댓글