autojs怎么上滑屏幕 5

刚刚用autojs很多方面不懂,求分享一下看小视频可以自动上滑屏幕... 刚刚用autojs很多方面不懂,求分享一下看小视频可以自动上滑屏幕 展开
 我来答
xgx1209
2020-07-28 · TA获得超过417个赞
知道小有建树答主
回答量:348
采纳率:67%
帮助的人:103万
展开全部
首先设定屏幕的宽和高

var height = device.height; //设定高度值=设备高度
var width = device.width; //设定宽度值=设备宽度
setScreenMetrics(width, height); //设置脚本坐标点击所适合的屏幕宽高。如果脚本运行时,屏幕宽度不一致会自动放缩坐标。
然后下面的代码是上划
swipe(width / 2, height - 500, width / 2, 0, 500);
语句解析:
swipe(起点横坐标,起点纵坐标,终点横坐标,终点纵坐标,使用时间)
代码解析:
width / 2是宽度二分之一处。也就是屏幕宽度的中间位置。
height - 500是高度减500像素,屏幕顶部为0。
0是屏幕顶端。
500是手指从起点移动到终点所需时间,单位是毫秒。
这样讲,应该很明白了。
如果需要下滑,那么将起点坐标设置到屏幕下方,终点坐标设置到屏幕顶端即可。
l7722526
2019-08-19 · TA获得超过2.7万个赞
知道大有可为答主
回答量:2.8万
采纳率:84%
帮助的人:3838万
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html > <style> #test_f{ position:relative; width:250px; margin:0 auto; } } #test{ width:250px; top:250px; position:absolute; background:blue; } </style> <script> function show(){ if(document.getElementById("test").style.display=='none') { document.getElementById("test").style.display=""; document.getElementById("btn").value="点击隐藏"; }else{ document.getElementById("test").style.display="none"; document.getElementById("btn").value="点击显示"; } } </script> <body > <input type="button" onclick="show()" value="点击显示" id="btn" /> <div id="test_f" > <div id="test" style="display:none;"> 我在中间 </div> <div> </body> </html>
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
景谷兰j3
2020-04-20
知道答主
回答量:2
采纳率:0%
帮助的人:1236
展开全部
"auto";
while (true) {
swipe(device.width / 2, 800, device.width / 2, 500, 2000);
swipe(device.width / 2, 500, device.width / 2, 800, 2000);
sleep(2000)
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式