Python实时鼠标平滑

时间:2016-06-04 13:47:13

标签: python mouse

我想知道是否可以进行实时鼠标平滑运动?就像,您使用默认鼠标输入移动鼠标,真正的鼠标,但屏幕上的移动顺畅。 我发现这可以移动鼠标,但不是直接的。

from __future__ import division
import autopy
import time

x0, y0 = 800, 300
xf, yf = 100, 600

total_time = 5.00  # in seconds
draw_steps = 1000  # total times to update cursor

dx = (xf-x0)/draw_steps
dy = (yf-y0)/draw_steps
dt = total_time/draw_steps

for n in xrange(draw_steps):
    x = int(x0+dx*n)
    y = int(y0+dy*n)
    autopy.mouse.move(x,y)
    time.sleep(dt)

有人能引导我走向正确的方向吗?

0 个答案:

没有答案