이미지 롤오버
script 2010. 12. 20. 18:04function changeImage(img) {
img.src = img.src.replace(".gif", "_on.gif");
}
function changeImage2(img) {
img.src = img.src.replace("_on.gif", ".gif");
}
<li><a href="#"><img src="../../../../../images/btn/btn_quick01.gif" onmouseover="changeImage(this)" onmouseout="changeImage2(this)" alt="Mail" /></a></li>
'script' 카테고리의 다른 글
javascript 2 논리연산자 (0) | 2011.04.18 |
---|---|
javascript 1 (0) | 2011.04.18 |
텍스트 클릭으로 div 보이고 감추기 (0) | 2010.12.03 |
selet 박스에 디자인 입히기 (0) | 2010.10.05 |
토글 메뉴 (0) | 2010.04.29 |