当前位置:首页 > 网页特效 > 鼠标特效 >

获取鼠标坐标js脚本

时间:2013-05-09 10:40 来源:互联网 作者:源码搜藏 收藏 推荐

运行代码 保存代码 复制代码 提示:您可以先修改部分代码再运行,保存代码功能在Firefox下无效。
获取鼠标坐标js脚本

获取鼠标当前坐标的js脚本,支持火狐谷歌等浏览器,很实用。

<body onMousemove="micro$oftMouseMove()">
<a href="http://www.codesocang.com/">源码搜藏网</a>,站长必备的高质量网页特效和广告代码。codesocang.com,站长js特效。<hr>
<!--欢迎来到源码搜藏网,我们网站收集大量高质量js特效,提供许多广告代码下载,网址:www.codesocang.com,.net打造靓站-->
<SCRIPT LANGUAGE="JavaScript">
    if (navigator.appName == 'Netscape')
    {
        document.captureEvents(Event.MOUSEMOVE);
        document.onmousemove = netscapeMouseMove;
    }
    function netscapeMouseMove(e)
    {
        if (e.screenX != document.test.x.value && e.screenY != document.test.y.value);
        {
            document.test.x.value = e.screenX;
            document.test.y.value = e.screenY;
        }
    }
    function micro$oftMouseMove()
    {
        if (window.event.x != document.test.x.value && window.event.y != document.test.y.value);
        {
            document.test.x.value = window.event.x;
            document.test.y.value = window.event.y;
        }
    }
</SCRIPT>
<FORM NAME="test">
X: <INPUT TYPE="TEXT" NAME="x" SIZE="4"> Y: <INPUT
TYPUE="TEXT" NAME="y" SIZE="4">
</FORM>
</body>

由源码搜藏网整理,转载请注明出处https://www.codesocang.com/tx-shubiao/4641.html

鼠标特效下载排行

最新文章