[javascript] 이미지 테두리 over, out 색상
로빈아빠
본문
script>
function over(img_id) {
img_id.style.borderColor = "#99CCCC";
}
function out(img_id,c) {
img_id.style.borderColor = String(c) ;
}
</script>
<a href=""><IMG SRC="http://static.naver.com/common/lg/naver03.gif" onMouseOver="over(this)" onMouseOut="out(this,'#666666')" style="border: solid 1px #666666">
[이 게시물은 VIRHAC님에 의해 2009-09-13 14:33:19 HTML에서 이동 됨]
function over(img_id) {
img_id.style.borderColor = "#99CCCC";
}
function out(img_id,c) {
img_id.style.borderColor = String(c) ;
}
</script>
<a href=""><IMG SRC="http://static.naver.com/common/lg/naver03.gif" onMouseOver="over(this)" onMouseOut="out(this,'#666666')" style="border: solid 1px #666666">
[이 게시물은 VIRHAC님에 의해 2009-09-13 14:33:19 HTML에서 이동 됨]
관련링크
댓글목록
등록된 댓글이 없습니다.