"请问鼠标点击能实现按住鼠标左键不放开持续几秒的功能吗"
请问鼠标点击能实现按住鼠标左键不放开持续几秒的功能吗
现在没有这种可视化组件,可以通过第三方库来实现
参考:首先 pip install pynput 下载 pynput 库
from pynput.mouse import Controller,Button #读取鼠标位置 print(mouse.position) #鼠标置位 mouse.position = (0, 0) #移动鼠标(相对位置) mouse.move(5,-5) #按压 mouse.press(Button.left) #松开 mouse.release(Button.left)
{left down}
http://support.i-search.com.cn:8088/showdoc/web/#/45?page_id=653
现在没有这种可视化组件,可以通过第三方库来实现
参考:首先 pip install pynput 下载 pynput 库
{left down}
http://support.i-search.com.cn:8088/showdoc/web/#/45?page_id=653