跳到主要内容

二指仿真滑动[免费]


rswipe

rndSwipe单指仿真滑动

参数名必选类型说明
startXint起点x
startYint起点y
endXint终点x
endYint终点x
timeStartint随机延迟_起始,默认50ms
timeEndint随机延迟_结束,默认起始+50ms
timeOutint滑动超时,默认2000ms
stepfloat滑动步进,默认0.08
//单指滑动
//默认方法
rSwipe.rndSwipe(200, 700, 200, 200)
sleep(1000)

//调整调整随机时间,默认50-100
rSwipe.rndSwipe(200, 700, 200, 200, 50, 80)
sleep(1000)

//调整超时时间
rSwipe.rndSwipe(200, 700, 200, 200, 50, 80, 1000)
sleep(1000)

//调整步进,默认0.08
rSwipe.step = 0.05
rSwipe.rndSwipe(200, 700, 200, 200)
sleep(1000)

rSwipe.rndSwipe(200, 700, 200, 200, 50, 80, 1000, 0.05)
sleep(1000)

返回值类型说明
true/falseboolean是否执行成功

rndSwipeTwo二指仿真滑动

参数名必选类型说明
startXint起点x
startYint起点y
endXint终点x
endYint终点x
startX1int起点x1
startY1int起点y1
endX2int终点x2
endY2int终点x2
timeStartint随机延迟_起始,默认50ms
timeEndint随机延迟_结束,默认起始+50ms
timeOutint滑动超时,默认2000ms
stepfloat滑动步进,默认0.08
//二指放大
//默认方法
rSwipe.rndSwipeTwo(444, 1230, 98, 1167,
659, 1203, 995, 1155)

//调整调整随机时间,默认50-100
rSwipe.rndSwipeTwo(444, 1230, 98, 1167,
659, 1203, 995, 1155,
50, 100)

//调整超时时间
rSwipe.rndSwipeTwo(444, 1230, 98, 1167,
659, 1203, 995, 1155,
50, 80, 1000)

//调整步进,默认0.08
rSwipe.step = 0.05
rSwipe.rndSwipeTwo(444, 1230, 98, 1167,
659, 1203, 995, 1155)

rSwiperndSwipeTwo(444, 1230, 98, 1167,
659, 1203, 995, 1155,
50, 80, 1000, 0.05)

返回值类型说明
true/falseboolean是否执行成功