한국어
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>마우스 포인터 이후 그림의 흥미로운 프롬프트 효과 downcodes.com</title> <script 언어="javascript"> 함수 showPic(sUrl){ var x,y; x = event.clientX; document.getElementById("Layer1").style.left = x; ").style.top = y; document.getElementById("Layer1").innerHTML = "<img src="" + sUrl + "">"; document.getElementById("Layer1").style.display = "블록"; } function HiddenPic(){ document.getElementById("Layer1").innerHTML = ""; document.getElementById("Layer1").style.display = "none" } </script> </ head> <body> <div id="Layer1" style="display:none;position:absolute;z-index:1;"></div> <img src="/images/logo.gif" onmouseout="hiddenPic( );" onmousemove="showPic(this.src);" /> <p></p> <img src="/img/200406301.jpg" onmouseout="hiddenPic();" onmousemove="showPic( this. src);" /> </body> </html>