pyautogui 移动鼠标方法
时间: 2023-10-19 09:26:46 浏览: 156
Python PyAutoGUI模块控制鼠标和键盘实现自动化任务详解
使用 PyAutoGUI 中的 moveTo() 方法可以移动鼠标到屏幕上的指定位置。
下面是一个简单的示例:
```python
import pyautogui
# 将鼠标移动到屏幕的 (x, y) 坐标位置
pyautogui.moveTo(x=100, y=100)
```
该方法还可以接受一些可选参数,例如 `duration`(移动过程的持续时间,单位为秒)、`tween`(移动时的缓动函数)等等。例如:
```python
import pyautogui
# 将鼠标移动到屏幕的 (x, y) 坐标位置,移动过程持续 2 秒,使用 easeInOutQuad 缓动函数
pyautogui.moveTo(x=100, y=100, duration=2, tween=pyautogui.easeInOutQuad)
```
更多关于 PyAutoGUI 的鼠标操作方法可以参考官方文档:https://pyautogui.readthedocs.io/en/latest/mouse.html。
阅读全文