| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1321 人关注过本帖, 1 人收藏
标题:JS录制鼠标的效果
只看楼主 加入收藏
hackboyo
Rank: 1
等 级:新手上路
帖 子:152
专家分:0
注 册:2006-10-27
收藏(1)
 问题点数:0 回复次数:5 
JS录制鼠标的效果
程序代码:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0048)http://www. -->
<HTML><HEAD><TITLE>New Document</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<META content="MSHTML 6.00.2900.2912" name=GENERATOR>
<META content="" name=Author>
<META content="" name=Keywords>
<META content="" name=Description>
<SCRIPT language=JavaScript>
<!--
var mousex=new Array();
var mousey=new Array();
var i;
var j=0;
var k;
var recordcount=0;
var repeat;
var repeat2;
var repeat3;
var speed=50;

function startthis() {
recordcount=1;
i=0;
mousex=new Array();
mousey=new Array();
recordthis();
}

function recordthis() {
if (maxnum.value=='' || isNaN(maxnum.value) == true || maxnum.value<0) {
    if (recordcount==1) {
    mousex[i]=mousefollow.offsetLeft;
    mousey[i]=mousefollow.offsetTop;
    i++;
    k=i;
    textfield.value='无时间限制';
    }
}
else {
    if (recordcount==1) {
        if (i<maxnum.value) {
        mousex[i]=mousefollow.offsetLeft;
        mousey[i]=mousefollow.offsetTop;
        i++;
        k=i;
        textfield.value='剩余'+(maxnum.value-i)+'/50秒';
        }
        else {
        recordcount=0;
        textfield.value='时间到';}
        }
    }
repeat=setTimeout("recordthis()",20);
}

function stopthis() {
clearTimeout("repeat");
recordcount=0;
}

function playthis() {
clearTimeout("repeat");
clearTimeout("repeat3");
recordcount=0;
if (j<i-1) {
    arrow.style.pixelLeft=mousex[j];
    arrow.style.pixelTop=mousey[j];
    arrow.style.visibility='visible';
    j++;
    repeat2=setTimeout("playthis()",speed);
    }
else {clearTimeout("repeat2");
    arrow.style.visibility='hidden';
    j=0;
    }
}

function rewindthis() {
clearTimeout("repeat");
clearTimeout("repeat2");
recordcount=0;
if (k>0) {
    arrow.style.pixelLeft=mousex[k-1];
    arrow.style.pixelTop=mousey[k-1];
    arrow.style.visibility='visible';
    k--;
    repeat3=setTimeout("rewindthis()",speed);
    }
else {clearTimeout("repeat3");
    arrow.style.visibility='hidden';
    k=i;
    }
}

function follow() {
mousefollow.style.pixelLeft=document.body.scrollLeft+event.clientX;
mousefollow.style.pixelTop=document.body.scrollTop+event.clientY;
}
// -->
</SCRIPT>
<LINK href="test.css" type=text/css rel=stylesheet></HEAD>
<BODY onmousemove=follow()>
<DIV id=arrow 
style="Z-INDEX: 1; VISIBILITY: hidden; WIDTH: 12px; POSITION: absolute; HEIGHT: 21px"><IMG 
src="New Document.files/cursor.gif"></DIV>
<DIV id=mousefollow 
style="Z-INDEX: 1; VISIBILITY: hidden; WIDTH: 12px; POSITION: absolute; HEIGHT: 21px">.</DIV><INPUT 
maxLength=4 size=4 name=maxnum><INPUT onclick=startthis() type=button value=录制><INPUT onclick=stopthis() type=button value=停止><INPUT onclick=speed=50;playthis() type=button value=播放><INPUT onclick=speed=2;playthis() type=button value=快放><INPUT onclick=speed=150;playthis() type=button value=慢放><INPUT onclick=speed=50;rewindthis() type=button value=倒放><INPUT style="WIDTH: 100px" type=button value=无时间限制 name=textfield> 
</BODY></HTML>
搜索更多相关主题的帖子: 鼠标 效果 录制 
2008-02-28 11:46
lmhllr
Rank: 8Rank: 8
等 级:贵宾
威 望:44
帖 子:1504
专家分:42
注 册:2005-5-12
收藏
得分:0 
请问:这个是用来做什么的?运行之后没什么反应,不明白!!..

请添加必要的注释和说明...谢谢....
2008-02-28 11:50
hackboyo
Rank: 1
等 级:新手上路
帖 子:152
专家分:0
注 册:2006-10-27
收藏
得分:0 
运行之后,先点录制,再点播放,就可以看到你刚才鼠标所做的操作
2008-02-28 11:58
hoddog
Rank: 1
来 自:福建泉州
等 级:新手上路
帖 子:33
专家分:0
注 册:2008-2-18
收藏
得分:0 
不错,我顶
不错,我顶,沙发,经典.
2008-02-28 22:00
jinyu1123
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2008-3-2
收藏
得分:0 
牛啊牛啊
2008-03-02 19:10
zplove
Rank: 5Rank: 5
等 级:贵宾
威 望:15
帖 子:783
专家分:0
注 册:2006-7-30
收藏
得分:0 
强人一个

相信自己的没错了
2008-03-14 18:00
快速回复:JS录制鼠标的效果
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.013632 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved