我做了一个,可以达到你的要求,发消息给我,我发到你邮箱里面去!

解决方案 »

  1.   

    随手写了一个示例:)
    <body scroll=no>
    <img src="DSCF0029.JPG">
    <table id=mm border=0 cellspacing=0 width="100%" height="100%"
     style="position: absolute; top: 0; left: 0; z-index: 520">
      <tr>
        <td width=10  onmousemove="SL(); SU()"></td>
        <td height=10 onmousemove="SU()"></td>
        <td width=10  onmousemove="SR(); SU()"></td>
      </tr>
      <tr>
        <td width=10  onmousemove="SL();"></td>
        <td></td>
        <td width=10  onmousemove="SR();"></td>
      </tr>
      <tr>
        <td width=10  onmousemove="SL(); SD()"></td>
        <td height=10 onmousemove="SD();"></td>
        <td width=10  onmousemove="SR(); SD()"></td>
      </tr>
    </table>
    <SCRIPT LANGUAGE="JavaScript">
    <!--
    window.onscroll = function()
    {
      var tab = document.getElementById("mm");
      tab.style.top  = document.body.scrollTop;
      tab.style.left = document.body.scrollLeft;
    }
    function resize()
    {
      var tab = document.getElementById("mm");
      tab.style.width = document.body.clientWidth;
      tab.style.height= document.body.clientHeight;
    }
    window.onresize = resize;
    window.onload = resize;
    function SL(){document.body.scrollLeft -= 10}
    function SR(){document.body.scrollLeft += 10}
    function SU(){document.body.scrollTop  -= 10}
    function SD(){document.body.scrollTop  += 10}
    //-->
    </SCRIPT>