■ カーソルの位置に十字線が出る |
<script language='JavaScript'>
<!--
var ycolor='#bbbbdd';/* 縦の線の色 */
var xcolor='#bbbbdd';/* 横の線の色 */
document.write('<SPAN ID=y STYLE=position:absolute;left:0;bottom:0;width:1px;height:1px;background-color:'+ycolor+';z-index:100;font-size:1px;height:expression(document.body.clientHeight-2)></SPAN>');
document.write('<SPAN ID=x STYLE=position:absolute;right:0;bottom:0;width:1px;height:1px;background-color:'+xcolor+';z-index:100;font-size:1px;width:expression(document.body.clientWidth-2)></SPAN>');
function zyuzi(){
y.style.pixelLeft=document.body.scrollLeft+event.x+1;
y.style.pixelBottom=document.body.scrollBottom+event.y+1;
x.style.pixelRight=document.body.scrollRight+event.x+1;
x.style.pixelTop=document.body.scrollTop+event.y+1;}
document.onmousemove=zyuzi;
//-->
</script> |
|
|