懒就要懒到底——鼠标自动点击(含时间判断)
时间:2024-04-22 22:18:06
其实老早之前就已经做完了,这次稍微改进一下
浏览地址:http://www.healdream.com/upload/html/autoclick.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script src="yahoo.js" type="text/javascript"></script>
<script src="event.js" type="text/javascript"></script>
</head>
<body>
<p><a href="http://www.blueidea.com">鼠标放在这个链接上1.5秒以上,将进入蓝色理想网站,当然不到1.5秒就没有效果</a></p>
<p><a href="http://www.healdream.com/blog">同理移到这里将进入我的blog</a></p>
<script type="text/javascript">
var links=document.getElementsByTagName("a");
function return_obj(){
return source;
}
function auto_click(str){
window.location=str;
}
function mouseover_func(e){
source=event.srcElement;
start=setTimeout("auto_click('"+source+"')",1500);
}
function mouseout_func(e){
clearInterval(start);
}
YAHOO.util.Event.addListener(links,"mouseover",mouseover_func);
YAHOO.util.Event.addListener(links,"mouseout",mouseout_func);
</script>
</body>
</html>
标签:懒就要懒到底——鼠标自动点击(含时间判断)
0
投稿
猜你喜欢
利用Go语言实现简单Ping过程的方法
2024-04-25 13:22:53
Python使用Pillow进行图像处理
2023-10-29 05:59:27
Python 2/3下处理cjk编码的zip文件的方法
2022-08-05 17:53:40
详解PHP设计模式之桥接模式
2023-05-30 10:29:02
python绘制多个曲线的折线图
2021-08-01 13:58:52
Python可视化神器pyecharts之绘制箱形图
2021-08-04 03:40:53
pytorch索引查找 index_select的例子
2023-09-12 20:45:05
指定区域的图片自动按比例缩小的js代码(防止页面被图片撑破)
2024-04-17 10:05:21
python使用opencv resize图像不进行插值的操作
2023-09-12 15:04:25
Golang两行代码实现发送钉钉机器人消息
2024-04-26 17:30:39
基于element-ui中el-select下拉框选项过多的优化方案
2023-07-02 17:00:50
Golang map如何生成有序的json数据详解
2024-05-09 09:47:45
PHP面向对象程序设计类的定义与用法简单示例
2023-11-22 17:31:17
使用pyqt5 实现ComboBox的鼠标点击触发事件
2022-01-12 17:24:57
PyCharm+Qt Designer+PyUIC安装配置教程详解
2024-01-04 12:58:02
解决pandas使用read_csv()读取文件遇到的问题
2021-08-29 18:31:02
SQL Server中单引号的两种处理技巧
2008-05-23 13:30:00
高考要来啦!用Python爬取历年高考数据并分析
2021-06-10 04:08:25
python SocketServer源码深入解读
2023-04-15 18:38:44
python中map的基本用法示例
2023-09-24 15:56:26