|
¸¶¿ì½º Æ÷ÀÎÆ®¸¦ µû¶ó´Ù´Ï´Â À̹ÌÁö
<html>
<head>
<script language="javascript">
function Move_explorer(){
document.all["pointer"].style.left=event.clientX+10
document.all["pointer"].style.top=event.clientY+15
}
function Move_netscape(e) {
document.layers['pointer'].left=e.pageX+10
document.layers['pointer'].top=e.pageY+15
}
function Follow() {
if (document.all) Move_explorer()
}
function Loaded() {
if (document.layers) {
window.captureEvents(Event.MOUSEMOVE)
window.onmousemove=Move_netscape
}
}
</script>
</head>
<BODY onMouseMove="Follow()"
onLoad="Loaded()">
<DIV ID="pointer" NAME="pointer"
STYLE="position:absolute;top:-50;"> <img
src="sample04.gif">
</DIV>
</body>
</html>
|
|
|
|
|