[javascript] 초간단 롤오버 이미지
로빈아빠
본문
초간단 롤오버 이미지 입니다.
form의 input type image 에도 되구요. 일반 이미지에도 적용됩니다.
--------------------------------------------------------------------------------
onmouseover="this.src='btn_over.gif'" onmousedown="this.src='btn_down.gif'" onmouseout="this.src='btn.gif'"
--------------------------------------------------------------------------------
1. 폼에 적용할 때.
<input type="image" src="btn.gif" onmouseover="this.src='btn_over.gif'" onmousedown="this.src='btn_down.gif'" onmouseout="this.src='btn.gif'" />
2. 일반 이미지에 적용할 때.
<img src="btn.gif" onmouseover="this.src='btn_over.gif'" onmousedown="this.src='btn_down.gif'" onmouseout="this.src='btn.gif'">
form의 input type image 에도 되구요. 일반 이미지에도 적용됩니다.
--------------------------------------------------------------------------------
onmouseover="this.src='btn_over.gif'" onmousedown="this.src='btn_down.gif'" onmouseout="this.src='btn.gif'"
--------------------------------------------------------------------------------
1. 폼에 적용할 때.
<input type="image" src="btn.gif" onmouseover="this.src='btn_over.gif'" onmousedown="this.src='btn_down.gif'" onmouseout="this.src='btn.gif'" />
2. 일반 이미지에 적용할 때.
<img src="btn.gif" onmouseover="this.src='btn_over.gif'" onmousedown="this.src='btn_down.gif'" onmouseout="this.src='btn.gif'">
관련링크
댓글목록
등록된 댓글이 없습니다.